假设我有一个文本文件说:
Hello my name is agz.
I am asking a question that is important.
如果我输入:grep -v "is" /path/to/file
,我应该没有输出,因为两行都有“是”。
如果我输入:grep -o "is" /path/to/file
,我应该得到:
is
is
但是我想得到:
Hello my name agz.
I am asking a question that important.
(只是错过了)有没有办法用grep和minimal regex实现这个目的?