mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-12-01 05:53:38 +08:00
13 lines
250 B
Bash
Executable File
13 lines
250 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 NEW/print-$i.new | diff - print-$i.out >DIFF/print-$i.out.diff )
|
|
then
|
|
echo print-$i passed.
|
|
else
|
|
echo print-$i failed.
|
|
fi
|
|
done
|