Linux查看文件命令及其查看文件头尾的命令
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
查看文件命令
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
使用场景:动态显示日志
关注博客
关注更多文章
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)