4 lines
172 B
Plaintext
Executable File
4 lines
172 B
Plaintext
Executable File
# find 'dull' videos older than 6 months and delete (we use size as a simple indicator)
|
|
DIR=/export/backup/Presence
|
|
find $DIR -type f -mtime +180 -size -50M -exec rm {} \;
|