目录
- [一. cat 和 tac命令](#一. cat 和 tac命令)
- [二. head 和 tail 命令](#二. head 和 tail 命令)
- [三. more命令](#三. more命令)
一. cat 和 tac命令
cat
:用来打开文本文件,从上到下的顺序显示文件内容。tac
:用法和cat相同,只不过是从下到上逆序的方式显示文件内容。- 当文件的内容有很多的时候,可以结合 head 或者 more 命令等,缩减显示内容。
bash
cat ./content.log
tac ./content.log
二. head 和 tail 命令
⏹head -行数 文件名
shell
# 从头开始查看前5行的内容
head -5 CBC_SystemLog.2023-09-27.0.log
⏹当显示在终端上的内容过多时,可以和grep 或cat命令结合使用
bash
# 和grep命令结合使用
grep -a error ./CBC_SystemLog.2023-09-27.0.log | head -5
# 和cat命令结合使用
cat ./CBC_SystemLog.2023-09-27.0.log | head -5
⏹tail -行数 文件名
shell
# 从尾开始查看倒数前5行的内容
tail -5 CBC_SystemLog.2023-09-27.0.log
三. more命令
⏹当文件有很多行的时候,默认显示一屏的内容,当进入more模式时
q
:按下键盘上的q,退出more模式Enter
:按下键盘上的Enter,显示下一行空格键
:显示下一页b
:显示上一页
bash
more ./CBC_SystemLog.log
⏹可以和grep命令结合使用
-n
:指定一页显示的行数
bash
grep -a exception ./CBC_SystemLog.log | more -5