Wait only 1/10 instead of 1 second between processes.
(yes I know sleep x.y is not portable but waiting so long is so annoying) git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@280 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
parent
b9631ee326
commit
2f961b7079
|
@ -20,7 +20,7 @@ i=1
|
||||||
while [ $i -le $max ]; do
|
while [ $i -le $max ]; do
|
||||||
xterm -e sh -c '(sleep 1; echo "ltest$i"; echo aa; echo -n py i; cat) | ./dgamelaunch -f "$conffile" '&
|
xterm -e sh -c '(sleep 1; echo "ltest$i"; echo aa; echo -n py i; cat) | ./dgamelaunch -f "$conffile" '&
|
||||||
echo -n " $!"
|
echo -n " $!"
|
||||||
sleep 1
|
sleep 0.1
|
||||||
i=$(($i+1))
|
i=$(($i+1))
|
||||||
done
|
done
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue