Created
December 3, 2022 12:34
-
-
Save mohsin/64d0f618cfd01c32384bef599150efc7 to your computer and use it in GitHub Desktop.
Threshold Analysis One-Line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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