Delete old .ts files after 7 days to save my disk space.
[recordtv.git] / cronscripts / recordtv-schedule
blob9454916aef020c7bdee7763a58010189e074c67c
1 #!/bin/sh
3 nice -n 20 /home/andy/cvs/recordtv/src/recordtv --schedule-recordings --delete-old --convert --install-dir /home/andy/cvs/recordtv/
5 # Delete files that are older than 14 days old in the "old" directory
6 echo
7 echo "Deleting old .ts files:"
8 find /home/andy/Videos/Recorded/old -name "*.ts" -and -mtime +7 -and -not -name "The_Wire*" -print -delete