使用grep要注意的地方
[maijunjin@localhost testGrep]$ grep 1 ./ #没有结果 [maijunjin@localhost testGrep]$ grep 1 . #没有结果 [maijunjin@localhost testGrep]$ grep 1 ./* #正确写法 ./1:1
查找某个目录下的所有文件必须指定*号
[maijunjin@localhost testGrep]$ grep 1 ./ #没有结果 [maijunjin@localhost testGrep]$ grep 1 . #没有结果 [maijunjin@localhost testGrep]$ grep 1 ./* #正确写法 ./1:1
查找某个目录下的所有文件必须指定*号