0

How to use find command for removing old files

How to use find command for check and remove the old files into the directory

lincoln
asked Oct 9, 2017
1 Answer
1

you just use following command for remove the last 10 days files,

find /directory/path/ -mtime -10 -type f -exec rm -rf {} \; 
View More
piraisudanrajendran
answered Oct 10, 2017
Your Answer
||||
 
100:0