ericfelker
4/21/2014 - 7:46 PM

Tar & zip files in pwd that have been last modified more than 1 year ago, then delete originals (currently commented out)

Tar & zip files in pwd that have been last modified more than 1 year ago, then delete originals (currently commented out)

find . -mtime +365 -type f | xargs tar -czvPf ./old_log_$(date +%F).tar.gz
# find . -mtime +365 -type f -delete

### delete files with "trc" in file name
# find . -name \*trc\* -type f -delete