Code: Alles auswählen
find /home/images/ -type f -name '*.png' -mtime +30 -delete
Code: Alles auswählen
find /home/images/ -type f -name '*.png' -mtime +30 -delete
Code: Alles auswählen
-maxdepth 1
Code: Alles auswählen
find: warning: you have specified the -maxdepth option after a non-option argument -type, but options are not positional (-maxdepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.
Code: Alles auswählen
root@vps:/home# find -maxdepth 1 /home/ -type f -name '*.png'
find: Der Pfad muß vor dem Suchkriterium stehen: /home/
Aufruf: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [Pfad...] [Suchkriterium]
Code: Alles auswählen
find /home/images/ -maxdepth 1 -type f -name '*.png' -mtime +30 -delete