基础知识
转义字符需要在前面添加
需转义字符:/
非转义字符:#()
文件
xargs
grep
# 包含某个字符串
grep <match string> <file path or pipeline>
# 不包含某个字符串
grep -v <match string> <file path or pipeline>
# 强制词匹配
grep -w <match word> <file path or pipeline>
转义字符需要在前面添加
需转义字符:/
非转义字符:#()
# 包含某个字符串
grep <match string> <file path or pipeline>
# 不包含某个字符串
grep -v <match string> <file path or pipeline>
# 强制词匹配
grep -w <match word> <file path or pipeline>