Skip to content

Instantly share code, notes, and snippets.

@blasterpal
Created November 6, 2012 13:28
Show Gist options
  • Select an option

  • Save blasterpal/4024732 to your computer and use it in GitHub Desktop.

Select an option

Save blasterpal/4024732 to your computer and use it in GitHub Desktop.
Calculate size of all files/directories that match pattern in Gb
ls | egrep -e '^[a-z0-9]{8}-.*' | xargs du | awk '{ SUM += $1} END {print SUM/1024/1024}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment