Files
rough-edit/delete_vidoes_without_sub.sh
2020-12-08 22:31:22 +01:00

14 lines
194 B
Bash
Executable File

#!/bin/sh
cd ../original
for f in *; do
if [ ! -f "../subs/${f%.*}.de.vtt" ]; then
rm "$f"
fi
done
cd ../subs/
for f in *; do
if [ ! -f "../original/${f%.*}.mp4" ]; then
rm "$f"
fi
done