grep keyword
若果keyword中有空格
grep "keyword"
例如:
ls | grep mp4
grep k1 | grep k2
grep -E 'k1|k2'
egrep 'k1|k2'
awk '/k1|k2/'