mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-21 03:13:17 +00:00
14 lines
104 B
Bash
Executable File
14 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
|
|
n=$1
|
|
shift
|
|
|
|
if [ $n -eq 0 ]; then
|
|
tcpdump $@
|
|
else
|
|
tcpdump $@ &
|
|
x=$!
|
|
sleep $n
|
|
kill $x
|
|
fi
|