Skip to content

Instantly share code, notes, and snippets.

@mohsin
Created December 3, 2022 12:34
Show Gist options
  • Save mohsin/64d0f618cfd01c32384bef599150efc7 to your computer and use it in GitHub Desktop.
Save mohsin/64d0f618cfd01c32384bef599150efc7 to your computer and use it in GitHub Desktop.
Threshold Analysis One-Line
i=1;for file in *.mp4; do if [ $((i % 10)) -eq 0 ]; then i=$[i + 1]; sleep 1000 && python3 /Users/Mohsin/Desktop/Dt/test/main.py "$file" >> out.txt &; else i=$[i + 1]; python3 /Users/Mohsin/Desktop/Dt/test/main.py "$file" >> out.txt &; fi; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment