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 all dirs that have been modified more than 27 days ago | |
| # and summarize the disk usage | |
| find . -type d -mtime +27 -maxdepth 1 -exec du -hcs {} \+ |