当前位置: 首页 >> grep
【linux】grep查找文件中包含的字符串

【linux】grep查找文件中包含的字符串

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

grep -rn "hello,world!" ./

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

-r 是递归查找

-n 是显示行号

2015年07月13日 12:46:57    Jiaozn    Linux    3691    0    全文阅读