octopus
Part of the Furniture
I have tried to remove file as is age of 1 day or more old.
Tried this: find /jffs/scripts/file_to_remove -name "file_to_remove" -mtime +1 -exec rm -f '{}' \;
but -mtime +1 doesn't recognise and don't remove mention file. Is -mtime a valid command in 384.15_alpha1?
I have run out of suggestions now, anyone who knows how to make this work or have any other proposal.
Octopus
Tried this: find /jffs/scripts/file_to_remove -name "file_to_remove" -mtime +1 -exec rm -f '{}' \;
but -mtime +1 doesn't recognise and don't remove mention file. Is -mtime a valid command in 384.15_alpha1?
Code:
Modification time (-mtime): The timestamp when the file was last modified
mtime is greater than (+N), less than (-N),".
Octopus