我收到此错误:
* 检测到 glibc */usr/sbin/tshark:双重释放或损坏
按照下面的方法操作,知道为什么吗?
#!/bin/bash
trap 'my_exit; exit' SIGINT SIGQUIT
count=0
/usr/sbin/tshark -i bond1.1 -f "port 1111" -w /test/test_1.pcap > /dev/null 2>&1 &
PID1=$!
/usr/sbin/tshark -i bond1.6 -f "port 8080" -w /test/test_2.pcap > /dev/null 2>&1 &
PID2=$!
function my_exit()
{
kill $PID1
kill $PID2
}
while :
do
sleep 1
count=$(expr $count + 1)
done
顺便说一句,当我尝试运行一个tshark
并将其杀死时,它运行良好。