Skip to content

Instantly share code, notes, and snippets.

@lucwj
Created June 13, 2017 07:47
Show Gist options
  • Save lucwj/a7f87a8f8cd4314fd01da1fcf076a036 to your computer and use it in GitHub Desktop.
Save lucwj/a7f87a8f8cd4314fd01da1fcf076a036 to your computer and use it in GitHub Desktop.
Some Awesome linux command

List all file with human readable size

ls -alh

List all extension in directory with file count

ls -R | egrep '(\.\w+)$' -o | sort | uniq -c | sort -r

Count total files in directory

ls -1 | wc -l

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment