(mac) sed 删除包含A但是不包含B的行

发布于 2022-09-01 19:00:56 字数 964 浏览 20 评论 0

例如:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素染倾城色 2022-09-08 19:00:56

请参考 Sed regex and substring negation
mac 上执行:

sed -e '/bbb/b' -e '/aaa/d' test.txt

输出为:

aaa bbb
bbb
hij
安人多梦 2022-09-08 19:00:56

可是试试分解为三个步骤:

  1. 对于含有 B 的行,在行首或行尾放置特殊标记;

  2. 替换所有含有 aaa 但是行首或行尾不含有特殊标记的行;

  3. 去掉行首或行尾的特殊标记。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文