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

11 lines
182 B
Markdown
Raw Normal View History

2026-04-03 16:39:33 +08:00
## 关键字搜索并排序
2026-04-03 16:39:13 +08:00
2026-04-03 16:42:01 +08:00
```bash
2026-04-03 16:39:13 +08:00
grep -h '关键字' *.log | sort
2026-04-03 16:42:01 +08:00
```
## 打印一个时间范围的片段
```bash
sed -n '/2026-03-26 10:15/, /2026-03-26 10:20/p' xxx.log
2026-04-03 16:39:13 +08:00
```