diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-11-27 16:17:05 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-04-24 01:33:04 +0300 |
commit | c412bf2ee0a3fbf9032fc32a26837d4fbc7585c5 (patch) | |
tree | 5cca6bcab79331ad82cab4219c7692b9dd4eea21 /tools/remove-old-recordings.sh |
initial public
Diffstat (limited to 'tools/remove-old-recordings.sh')
-rw-r--r-- | tools/remove-old-recordings.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/remove-old-recordings.sh b/tools/remove-old-recordings.sh new file mode 100644 index 0000000..d376572 --- /dev/null +++ b/tools/remove-old-recordings.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +# to be launched by cron on remote server + +find /var/recordings -type f -mtime +14 -delete |