Use find and rm to delete files:
find /var/mol/temp/ -name *.txt -exec rm -rf {} \;
Subscribe to:
Post Comments (Atom)
-
Step 1, New a project rails new demo Step 2, Update Gemfile add paperclip, mysql2 gem, enable JavaScript runtime gem 'mysql2' ...
-
I used 7z to zip this file under Windows, try to unzip it under linux [ang@walker temp]$ gunzip 2011.sdf.zip gunzip: 2011.sdf.zip: unkno...
-
When trying to access transmission from web-browswer i got the message : 403: Forbidden Unauthorized IP Address. Either disable the IP ad...
find by time
ReplyDeletefind . -mtime +1
-mtime +1 means you are looking for a file modified 1 days ago.
-mtime -1 means less than 1 days.
-mtime 1 If you skip + or - it means exactly 1 days.