find和grep 简单使用

文件(find)查找
find [路径] [选项]
创建5个文件


当前目录(/Users/apple/com.lq)查找 abc.txt

apple$ find ./ -name abc.txt


文件内容查找(grep)
grep -i main haison.c #忽略大小写
grep –n main haison.c #输出行号
grep -v main haison.c #反检索,只显示不匹配的行

先创建一个文件 vi hello.c

find和grep 简单使用_第1张图片

查找hello.c文件中的 main 并显示行号

find和grep 简单使用_第2张图片

查找hello.c文件中不包含 main 并显示行号

find和grep 简单使用_第3张图片


在 ls -l 命令中加入grep 反检索 不显示 hello 的项

find和grep 简单使用_第4张图片

你可能感兴趣的:(find和grep 简单使用)