I just run a command to "find and delete files & folder older than 100 days" on a folder, and got the following:
$ find . * -mtime +100 -delete
find: May_01_2015: No such file or directory
find: May_02_2015: No such file or directory
find: May_03_2015: No such file or directory
find: May_04_2015: No such file or directory
find: May_05_2015: No such file or directory
find: May_06_2015: No such file or directory
find: May_07_2015: No such file or directory
find: May_08_2015: No such file or directory
find: May_09_2015: No such file or directory
find: May_10_2015: No such file or directory
The folder names are correct (they should be deleted), but why is it complaining that it could not find those folders? (they were there)
Also, it's interesting, when I do:
$ find "$(pwd)" * -mtime +200 -print
I sometimes see the same file listed twice. I wonder if that's the reason. Why is it going through the same file twice?