initial commit of bin scripts into git

This commit is contained in:
2023-11-08 13:38:19 +11:00
commit 3735eea3c6
113 changed files with 11631 additions and 0 deletions

3
clean_old_Presence_videos Executable file
View File

@@ -0,0 +1,3 @@
# 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 {} \;