linux用grep在文件中查找字符串并显示字符串在文件中的行号?
如果你想在当前目录下 查找"hello,world!"字符串,可以这样:grep -rn "hello,world!" ././ : 表示路径为当前目录.-r 是递归查找-n 是显示行号 hello world 不需要被解析,应该是单引号而不是双引号...
·
更多推荐
已为社区贡献1条内容
如果你想在当前目录下 查找"hello,world!"字符串,可以这样:grep -rn "hello,world!" ././ : 表示路径为当前目录.-r 是递归查找-n 是显示行号 hello world 不需要被解析,应该是单引号而不是双引号...
更多推荐
所有评论(0)