smacattack
Technical User
I can delete files which are a day old by exec
find /fred -name "*fred" -mtime -1 -exec rm {} \;
Is there any way of being more precise and saying less than 3 hours?
thanks
find /fred -name "*fred" -mtime -1 -exec rm {} \;
Is there any way of being more precise and saying less than 3 hours?
thanks