标签: linux sed
我有一个字符串:
xxxx:xx:x:1234::xxxx/128
我想在::之前获取字符,输出也应该包含“::”。
如果我尝试命令:
sed 's/::.*//'
输出结果为:
xxxx:xx:x:1234 "::" characters are not included
如何修改sed命令以在输出中包含“::”字符。