bash 按数字子字符串排序
在 bash shell 中,我尝试按每行末尾的数字值排序(按数据包数量排序)尝试使用“sort -k6 -t '=' -n但没有效果。 输入: type udp ip src=192.168.2.173 dport=53 packets=1 type udp ip src=192.168.2.168 dport=53 packets=1 type udp ip src=192.168.2.173 dport=53 packets=1 type udp ip src=192.168.2.170 dport=53 packets=560 type udp ip...