Mar 15, 20101
Dateien Löschen, die älter sind als x Tage
Categories: Linux (Ubuntu)
“The find utility on linux allows you to pass in a bunch of interesting arguments, including one to execute another command on each file. We’ll use this in order to figure out what files are older than a certain number of days, and then use the rm command to delete them.”
find /path/to/files* -mtime +5 -exec rm {} \;
