Skip to content

Instantly share code, notes, and snippets.

@yashk
Created February 5, 2014 14:27
Show Gist options
  • Save yashk/8824672 to your computer and use it in GitHub Desktop.
Save yashk/8824672 to your computer and use it in GitHub Desktop.
Avg folder size under linux dir
du -s /data/sub_dir/*/* | awk '{sum=sum+$1} END {print ((sum / NR) /1024)/1024 " GB"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment