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.
24 lines
381 B
24 lines
381 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
declare -i zahl=150
|
||
|
declare -i zahl1=3
|
||
|
rm -f jumptable
|
||
|
|
||
|
while [ 0 -le $zahl ] ; do
|
||
|
echo "j $zahl" >>jumptable
|
||
|
echo "sleep 1" >>jumptable
|
||
|
echo "j $zahl1" >>jumptable
|
||
|
echo "sleep 1" >>jumptable
|
||
|
|
||
|
zahl=$[zahl-7]
|
||
|
zahl1=$[zahl1+7]
|
||
|
done
|
||
|
|
||
|
echo "quit" >>jumptable
|
||
|
|
||
|
for i in "/mnt/diskD/rh/mp3/neu3"/* ; do
|
||
|
echo "open $i" >yaf.script
|
||
|
./yaf-splay <jumptable
|
||
|
sleep 5
|
||
|
done
|