mirror of
https://github.com/mr0xb/scripts.git
synced 2026-08-27 19:34:57 -04:00
11 lines
175 B
Shell
11 lines
175 B
Shell
#/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
|