Skip to content

Instantly share code, notes, and snippets.

@bellcliff
Created June 19, 2015 03:32
Show Gist options
  • Select an option

  • Save bellcliff/307cf637fcf62b7cd343 to your computer and use it in GitHub Desktop.

Select an option

Save bellcliff/307cf637fcf62b7cd343 to your computer and use it in GitHub Desktop.
list disk usage of subfolder
# suppose ls -l will show content like below
# drwxr-xr-x 8 yangb staff 272 Apr 17 16:21 output
# -rw-r--r-- 1 yangb staff 13925 Apr 17 15:15 post.py
ls -l | awk '{print $9}' | xargs du -sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment