freebsd-skq/contrib/tcpdump/tests/print-flags.sh
2006-09-04 20:04:42 +00:00

13 lines
221 B
Bash
Executable File

#!/bin/sh
uudecode print-flags.puu
for i in x xx X XX A AA; do
if (../tcpdump -$i -s0 -nr print-flags.pcap | tee print-$i.new | diff - print-$i.out)
then
echo print-$i passed.
else
echo print-$i failed.
fi
done