查看文件命令
cat:查看文件的所有内容(适合小的文件)
more:分页查看文件
[root@localhost ~]# more install.log
按空格向下翻页,按q退出
less:更强大的分页查看文件
可是使用PgUp向上翻页,PgDn向下翻页
使用ctrt+f向下翻页,ctrl+b向上翻页
可以使用方向键上下键逐行翻页
使用方向的左右键,左右翻屏
按q退出
查看头命令
head查看文件头
[root@localhost ~]# head install.log
-n 后面跟显示的行数
[root@localhost ~]# head -n 20 install.log
tail查看文件尾
[root@localhost ~]# tail install.log
-n 后面跟显示的行数
[root@localhost ~]# tail -n 30 install.log
-f:动态显示
[root@localhost ~]# tail -f hello.txt
hello3
hello33
使用场景:动态显示日志