我试图使用grep来匹配包含两个不同字符串的行。我已经尝试了以下方法,但这匹配了包含不是我想要的string1或string2的行。
grep 'string1\|string2' filename
那么我如何匹配与grep只包含两个字符串的行?
我试图使用grep来匹配包含两个不同字符串的行。我已经尝试了以下方法,但这匹配了包含不是我想要的string1或string2的行。
grep 'string1\|string2' filename
那么我如何匹配与grep只包含两个字符串的行?
当前回答
grep ‘string1\|string2’ FILENAME
GNU grep 3.1版
其他回答
你可以使用
grep 'string1' filename | grep 'string2'
Or
grep 'string1.*string2\|string2.*string1' filename
对于多行匹配:
echo -e "test1\ntest2\ntest3" |tr -d '\n' |grep "test1.*test3"
or
echo -e "test1\ntest5\ntest3" >tst.txt
cat tst.txt |tr -d '\n' |grep "test1.*test3\|test3.*test1"
我们只需要删除换行符,它就工作了!
grep -i -w 'string1\|string2' filename
这适用于精确的单词匹配和匹配不区分大小写的单词,为此使用-i
grep '(string1.*string2 | string2.*string1)' filename
将得到line与string1和string2在任何顺序
grep ‘string1\|string2’ FILENAME
GNU grep 3.1版