我的任务
我有一个包含以下内容的文件 A.txt。
aijdish uhuih
buh iiu hhuih
zhuh hiu
d uhiuhg ui
...
我想用这些词选择行aijdish
,,d
...buh
我只知道我可以:
cat A.txt | grep "aijdish" > temp.txt
cat A.txt | grep "d" >> temp.txt
cat A.txt | grep "buh" >> temp.txt
...
但是我这次有几千字需要选择,在bash下怎么做呢?