Files
linux/Linux实用的一些命令.md

5 lines
93 B
Markdown

## 用关键字搜索某个或某些文件并排序
```
grep -h '关键字' *.log | sort
```