首页 > 代码库 > 查询搜索指令

查询搜索指令

1.在某个路径下查找一个指定的文件:

find pathname -name "filename"

eg: find /usr/ -name "stdio.h" //在usr目录下查找stdio.h头文件。


2.在某个路径下查找包含一个指定的字符串的所有文件:

grep -rl "stringname" pathname

eg:grep -rl "BUFSIZ" .///在当前目录下查找包含宏"BUFSIZ"的文件


3.在某个文件里面查找一个指定的字符串

grep "stringname" filename

eg:grep "BUFSIZ" stdio.h//在文件stdio.h里查找宏"BUFSIZ"默认输出所在行


查询搜索指令