Skip to content
Snippets Groups Projects
Commit 9f369b09 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

axis_record: record only once

parent c828f331
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# You Only Record Once
pgrep ffmpeg > /dev/null && echo "ffmpeg is already running" && exit 1
# Remove mp4 files that have not been modified for one week
find . -name \*.mp4 -mtime +7 -delete
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment