Anas Alnaffar wrote:
> I tried to run this command
>
> find -name "*.access*" -mtime +2 -exec rm {} \;
>
Should have been: find ./ -name \*.access\* -mtime +2 -exec rm -f {} \;
Mon Jan 25 14:49:20 UTC 2010
Chan Chung Hang Christopher <christopher.chan at bradbury.edu.hk>
Anas Alnaffar wrote:
> I tried to run this command
>
> find -name "*.access*" -mtime +2 -exec rm {} \;
>
Should have been: find ./ -name \*.access\* -mtime +2 -exec rm -f {} \;