Linux搜索文件内容

比如在linux中查找文件内容包含“test”的文件

cd


grep -nr "test" *

只查找某个特定的文件类型呢,只在.log文件中查找文件内容包含
 
  
grep -nr "test" *.log


你可能感兴趣的:(Linux)