mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-28 12:33:47 +08:00
14 lines
221 B
Bash
14 lines
221 B
Bash
#!/bin/sh
|
|
|
|
uudecode 08-sunrise-sunset-esp2.puu
|
|
|
|
echo -n test esp4...
|
|
../tcpdump -t -n -E "file esp-secrets.txt" -r 08-sunrise-sunset-esp2.pcap >esp4.new
|
|
if diff esp4.new esp2.out
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|