Created
May 24, 2016 13:44
-
-
Save supermasita/da2c43501287a13d03b8069f6a3ae3a2 to your computer and use it in GitHub Desktop.
FIND + AWK - Find files older than N days and sum their total disk use
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
# seen on http://www.liamdelahunty.com/tips/linux_ls_awk_totals.php | |
# gives result in MB | |
find /opt/kaltura/dwh/cycles/process/ -type f -mtime +3 -exec ls -l {} \; | awk '{ SUM += $5} END { print SUM/1024/1024 }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment