摘要: 需求是下载服务器的log文件进行过滤,然后进行分析 # 获取前10000行 head -n 10000 /path/to/logfile.log > /path/to/newfile_part1.log #前1000行之后的内容 tail -n +1001 /path/to/yourfile #要找 阅读全文
posted @ 2024-12-09 18:01 AlamZ 阅读(7) 评论(0) 推荐(0) 编辑