如何使用grep筛选出含有A或者B字符的行

2024-12-01 07:09:42
推荐回答(1个)
回答1:

me@ubuntu:grep$ cat test.txt
aa123
AA123
AABB123
BB123
me@ubuntu:grep$ grep -e 'AA' -e 'BB' ./test.txt
AA123
AABB123
BB123