~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib/example/yaf/yafsplay/stresstest

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
declare -i zahl=150
 
4
declare -i zahl1=3
 
5
rm -f jumptable
 
6
 
 
7
while [ 0 -le $zahl ] ; do 
 
8
 echo "j $zahl" >>jumptable
 
9
 echo "sleep 1" >>jumptable
 
10
 echo "j $zahl1" >>jumptable
 
11
 echo "sleep 1" >>jumptable
 
12
 
 
13
 zahl=$[zahl-7]
 
14
 zahl1=$[zahl1+7]
 
15
done
 
16
 
 
17
echo "quit" >>jumptable
 
18
 
 
19
for i in "/mnt/diskD/rh/mp3/neu3"/* ; do
 
20
 echo "open $i" >yaf.script
 
21
 ./yaf-splay <jumptable
 
22
 sleep 5
 
23
done