Skip to content

Instantly share code, notes, and snippets.

@ajoyoommen
Created December 16, 2015 10:18
Show Gist options
  • Save ajoyoommen/160839b277a2fce4b468 to your computer and use it in GitHub Desktop.
Save ajoyoommen/160839b277a2fce4b468 to your computer and use it in GitHub Desktop.
List the size of all files and the folders in a directory in linux. Accepts a command line argument of the directory to scan
du -BM --max-depth=1 $1 | sort -n -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment