我有文本文件。我只需要打印包含特定字符串之一的这些行,例如:
文本文件:
Car, bold 231212 /Fds
House pen 232123 /RYF
game kon 342442 /ksgj
mess three 42424 /UTR
我只需要让行包含Fds或UTR
输出:
Car, bold 231212 /Fds
mess three 42424 /UTR
如何在grep中执行这些操作?
谢谢
最佳答案
尝试这样做,OR
运算符是管道:|
:
grep -E 'Fds|UTR' file
或者
grep -E '(Fds|UTR)' file
或者
grep -P '(?:Fds|UTR)' file
或者
grep 'Fds\|UTR' file