Linux下查看文档指令
Posted 张三的哥哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下查看文档指令相关的知识,希望对你有一定的参考价值。
1,cat直接查看
cat /etc/profile
2,more,less分页查看
less /etc/profile
more /etc/profile
less -N /etc/profile 显示行号 内容
3,tail head从尾部或头部查看
head -n 10 /etc/profile 显示前10行内容
tail -n 10 /stc/profile 显示后10行的内容
tail /etc/profile 显示后10行内容,如果文档增加内容,默认显示,此指令显示日志非常好用
以上是关于Linux下查看文档指令的主要内容,如果未能解决你的问题,请参考以下文章