共计 526 个字符,预计需要花费 2 分钟才能阅读完成。
grep 命令用于查找文件中包含特定字符串的行。下面是 grep 命令的基本用法:
-
grep string file
: 在指定文件中查找包含特定字符串的行。例如:grep hello file.txt
将在 file.txt 中查找包含字符串 "hello" 的行。 -
grep -i string file
: 在查找时忽略大小写。例如:grep -i hello file.txt
将在 file.txt 中查找包含字符串 "hello" 的行,不区分大小写。 -
grep -r string directory
: 在指定目录及其子目录下查找包含特定字符串的行。例如:grep -r hello /path/to/directory
将在指定目录下递归查找包含字符串 "hello" 的行。 -
grep -v string file
: 查找不包含特定字符串的行。例如:grep -v hello file.txt
将在 file.txt 中查找不包含字符串 "hello" 的行。 -
grep -n string file
: 显示匹配行的行号。例如:grep -n hello file.txt
将显示 file.txt 中包含字符串 "hello" 的行的行号。
这些只是 grep 命令的一些基本用法,还有更多的选项和用法可以查看 grep 命令的帮助文档。
丸趣 TV 网 – 提供最优质的资源集合!
正文完