1.普通用法
grep keyword
若果keyword中有空格
grep "keyword"
例如:
ls | grep mp4
2.“与”操作(其实就是多次筛选)
grep k1 | grep k2
3.“或”操作
grep -E 'k1|k2'