我有一个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
但这听起来不是最好的方法。
有没有更好更短的方法来实现这个目标?