Last active
January 27, 2016 07:38
-
-
Save TheRatG/9957c56e452442156159 to your computer and use it in GitHub Desktop.
find and size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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