erik%netscape.com f9eb58e3fe Original check-in of the "Web Sniffer", a set of tools to work with the
protocols underlying the Web.


git-svn-id: svn://10.0.0.236/trunk@59401 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-01 18:24:20 +00:00

17 lines
276 B
Plaintext
Executable File

:
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