Command

grep

3 useful snippets found.

如何不区分大小写进行搜索

grep -i [字符串] [文件]

如何使用grep排除行

grep -v [排除字符串] [文件]

如何递归搜索目录中的字符串

grep -r [搜索字符串] .