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

13 lines
283 B
Markdown
Raw Permalink 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
```
## 打印一个时间范围的片段
2026-04-03 16:43:19 +08:00
按分钟级匹配,按秒的话结束时间不存在日志,会导致一直输出到文件末尾
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
```