我正在尝试清理一组 ipv6 ip 地址。
cat /tmp/ipaddress.txt | /bin/grep -i "unexpectedly shrunk window" | /bin/cut -d' ' -f3 | /bin/cut -d'/' -f1 | /bin/cut -d' ' -f3 | /bin/sort --uniq > /var/log/dos_ip6.txt
/tmp/ipaddress.txt 包含以下内容
TCP: Peer 0000:0000:0000:0000:0000:ffff:4df6:3e12:12345/80 unexpectedly shrunk window 1550831482:1550831483 (repaired)
/var/log/dos_ip6.txt 包含以下内容
0000:0000:0000:0000:0000:ffff:4df6:3e12:12345
我想删掉最后一个“*:12345”。
我怎样才能做到这一点