在UNIX中为两列中的不同值grep文件

时间:2015-12-18 17:04:21

标签: unix grep multiple-columns

我有一个Feed文件,我想从中获取符合以下条件的行

...ABC 123 .....
...BCD 456 ....

我确实试过这个并且工作正常

cat <filename>| grep 'ABC' | grep '123' > Newfile - Create a new file
cat <filename>| grep 'BCD' | grep '456' >> Newfile - Append to the created file

但这听起来不是最好的方法。

有没有更好更短的方法来实现这个目标?

0 个答案:

没有答案