Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个正则表达式foobar并且我想查找文档中不包含与foobar匹配的所有行。我可以这样做吗?我该怎么做呢?
^(?!.*foobar.*).+$
使用多行选项,匹配所有不包含 foobar 的行。
您的案例的正则表达式可以是这个
^((?!foobar))$
编辑:
但如果你只想要 grep 一些东西,你可以使用 -v 参数:
grep -v foobar