Skip to content

Instantly share code, notes, and snippets.

@TheRatG
Last active January 27, 2016 07:38
Show Gist options
  • Save TheRatG/9957c56e452442156159 to your computer and use it in GitHub Desktop.
Save TheRatG/9957c56e452442156159 to your computer and use it in GitHub Desktop.
find and size
# find old files and calculate their size in Mb
find ./logs/* -type f -mtime +180 -exec du -ks {} \; | cut -f1 | awk '{total=total+$1}END{print total/1024}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment