This commit is contained in:
Steve B 2025-12-05 14:53:37 -05:00
commit e698f046c8
5 changed files with 183 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#/bin/bash
file=$1
if [ -f "$file" ]; then
while read -r line;
do
echo "" | ./handbrake.sh "$line"
done < "$file"
else
echo "$file does not exist or is not a file!"
fi