grep 包含某个关键字
时间: 2023-07-25 10:29:31 浏览: 100
Linux日志中查找关键字及其前后的信息实例方法
5星 · 资源好评率100%
你可以使用以下命令来在文件中查找包含某个关键字的行:
```bash
grep "关键字" 文件名
```
例如,如果你想在文件 `example.txt` 中查找包含关键字 `hello` 的行,可以运行以下命令:
```bash
grep "hello" example.txt
```
这将输出所有包含关键字 `hello` 的行。如果你想查找多个文件,可以在命令中指定多个文件名,例如:
```bash
grep "hello" file1.txt file2.txt file3.txt
```
阅读全文