зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
276 B
Plaintext
17 строки
276 B
Plaintext
|
:
|
||
|
stdout=zzz.out.$$
|
||
|
stderr=zzz.err.$$
|
||
|
start=$1
|
||
|
out=$2
|
||
|
shift
|
||
|
shift
|
||
|
echo $start > $stdout
|
||
|
echo $start > $stderr
|
||
|
echo about to invoke ./robot -s $start -o $out $*
|
||
|
./robot -s $start -o $out $* >> $stdout 2>> $stderr
|
||
|
echo robot returned $?
|
||
|
if test -f core
|
||
|
then
|
||
|
mv core core.$$
|
||
|
fi
|