1
0
mirror of https://github.com/fritz-smh/yi-hack.git synced 2026-08-20 12:53:06 +00:00

Apply PR #42 - upgrade PR #23 (rename file for deletion)

This commit is contained in:
fritz-smh
2016-06-08 22:07:05 +02:00
parent a01f61f432
commit 27e3fa9dfc
5 changed files with 60 additions and 22 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/sh
#Delete files and folders more than 15 days
#To run this script you can make an entry the cameras crontab
#You might need to create manually the folder structure /var/spool/cron/crontabs
#or when you try to add a crontab with "crontab -e" it might give you an error
#search on internet about the use of crontab
dir="/home/hd1/record/"
days=+15
dt=`date +%y%m%d`
du -sh ${dir} > ${dir}Delete_$dt.log
find ${dir} -mtime $days -exec rm -Rf {} \;
du -sh ${dir} >> ${dir}Delete_$dt.log