$ cd target dir
$ find -mtime +20 -exec rm -rf {} \;
It will delete all the files and sub-directories in target directoy which were modified more than 20 days ago
$ find -mtime +20 -exec rm -rf {} \;
It will delete all the files and sub-directories in target directoy which were modified more than 20 days ago
No comments:
Post a Comment