You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
430 B
25 lines
430 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
declare -i zahl=100
|
||
|
declare -i zahl1=3
|
||
|
rm -f jumptable
|
||
|
echo "sleep 5" >>jumptable
|
||
|
|
||
|
while [ 0 -le $zahl ] ; do
|
||
|
echo "j $zahl" >>jumptable
|
||
|
echo "sleep 0" >>jumptable
|
||
|
echo "j $zahl1" >>jumptable
|
||
|
echo "sleep 0" >>jumptable
|
||
|
|
||
|
zahl=$[zahl-7]
|
||
|
zahl1=$[zahl1+7]
|
||
|
done
|
||
|
echo "sleep 20" >>jumptable
|
||
|
echo "quit" >>jumptable
|
||
|
|
||
|
for i in "/mnt/diskD/mpeg"/* ; do
|
||
|
echo "open $i" >yaf.script
|
||
|
./yaf-mpgplay <jumptable
|
||
|
sleep 5
|
||
|
done
|