(mac) sed 删除包含A但是不包含B的行
例如:
aaa bbb
aaa ccc
aaa
bbb
hij
匹配后的结果是
aaa bbb
hij
尝试过的
sed -e '/\(aaa\)[^\(bbb\)]*$/d' test.txt
在手册http://www.gnu.org/software/sed/manual/sed.html上给出的
regexp1\|regexp2
Matches either regexp1 or regexp2. Use parentheses to use complex alternative regular expressions. The matching process tries each alternative in turn, from left to right, and the first one that succeeds is used. It is a GNU extension.
regexp1regexp2
Matches the concatenation of regexp1 and regexp2. Concatenation binds more tightly than \|, ^, and $, but less tightly than the other regular expression operators.
也看了这里的一些参考:
http://coolshell.cn/articles/9104.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参考 Sed regex and substring negation
mac 上执行:
输出为:
可是试试分解为三个步骤:
对于含有 B 的行,在行首或行尾放置特殊标记;
替换所有含有 aaa 但是行首或行尾不含有特殊标记的行;
去掉行首或行尾的特殊标记。