如果你想在当前目录下 查找"hello,world!"字符串,

可以这样:grep -rn "hello,world!" ./

./ : 表示路径为当前目录.

-r 是递归查找

-n 是显示行号

 

hello world 不需要被解析,应该是单引号而不是双引号

Logo

更多推荐