mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-24 18:43:39 +08:00
15 lines
159 B
Bash
Executable File
15 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uudecode lmp.puu
|
|
|
|
echo -n test lmp ...
|
|
../tcpdump -t -n -v -r lmp.pcap >lmp.new
|
|
if diff lmp.new lmp.out
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|
|
|