Jun 21, 2013

[memo] How to delete old files in Linux

find ./ -mtime +60 -name "*.log" | xargs mv --target-directory=/tmp
cd /tmp
rm *.log
# or run the following command
find ./ -mtime +60 -name "*.log" | xargs rm -f

No comments: