What I want is to delete manually all e-mail that are before 01/01/2015
The command is
find /directory/path -type f ! -newermt 2015-01-01 -ls -exec rm -f {} \;
What I want is to delete manually all e-mail that are before 01/01/2015
The command is
find /directory/path -type f ! -newermt 2015-01-01 -ls -exec rm -f {} \;
Well today I have to search files with *.php and with *.html .
How to do that ?
Solution is :
find ./ Â \( -name "*.php" -o -name "*.html" Â \)
Powered by WordPress