遇一山,过一山,处处有风景;只要勇敢向前,一路尽是繁花盛开。 | (点击查看→)【测试干货】python/java自动化、持续集成、性能、测开、简历、笔试面试等

linux中,使用cat、head、tail命令显示文件指定行

小文件可以用cat(也可以用head、tail)

显示文件最后20行:cat err.log | tail -n 20 

显示文件前面20行:cat err.log | head -n 20

cat -n /etc/passwd 表示显示行号

从第20行开始显示(包含第20行)后面的所有行:cat err.log | tail -n +20

从倒数第20行开始显示(不包含倒数第20行)之前的所有行:cat err.log | head -n -20

显示100行到500行:cat err.log | head -n 500 | tail -n +100

                                  cat err.log | tail -n +100 | head -n 401

                                  sed -n '100,500p' err.log

大文件最好用head、tail

当被查看的文件很大,不要用cat,直接用head,tail

head -n 20 err.log

tail -n 20 err.log 

 

显示100行到500行:head -n500 test.txt | tail -n +100

          tail -n +100 test.txt| head -n 401 

示例

一个很大的文件all.log

看最后20行:tail -f -n20  all.log,也可以简写为:tail -fn20  all.log

看最后20行中的包含error的行(-i表示忽略大小写):tail -f -n20  all.log | grep -i  error

给被搜索的关键字加颜色方便查看(默认是红色):tail -f -n20  all.log | grep -i  error --color=auto

 

posted @ 2019-04-04 17:49  全栈测试笔记  阅读(8041)  评论(0编辑  收藏  举报
浏览器标题切换
浏览器标题切换end