fps purge process

This commit is contained in:
Stefen Auris 2024-03-24 02:37:50 -04:00
parent 3bb1d80b23
commit f975d68bd9
3 changed files with 8 additions and 3 deletions

View file

@ -0,0 +1,6 @@
#!/bin/bash
for i in `fdfind _30.mp4`; do
j=${i/_30.mp4/}
rm --verbose "$j"
mv --verbose "$i" "$j"
done