mirror of
https://github.com/mr0xb/scripts.git
synced 2026-08-28 03:44:57 -04:00
.
This commit is contained in:
parent
62156a1d85
commit
e698f046c8
5 changed files with 183 additions and 0 deletions
11
media/handbrake/hand_loop.sh
Normal file
11
media/handbrake/hand_loop.sh
Normal 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
|
||||
Loading…
Reference in a new issue