《Linux就该这么学》-新手必须掌握的Linux命令-文本文件查看/编辑命令-head命令-用于查看纯文本文件的前N行
TIME 2023-01-13 18:32
head命令
用于查看纯文本文件的前N行,语法格式为“head [参数] 文件名称”。
在阅读文本内容时,谁也难以保证会按照从头到尾的顺序往下看完整个文件。
如果只想查看文本中前10行的内容,该怎么办呢?head命令就能派上用场了:
查看lnmp-install.log日志文档的前10行
[root@456 ~]# head -n 10 lnmp-install.log
Press any key to install…or Press Ctrl+c to cancel
You will install lnmp stack.
nginx-1.20.1
mysql-5.7.34
php-7.4.21
Enable InnoDB: y
Print lnmp.conf infomation…
Download Mirror: https://soft.vpser.net
[root@456 ~]# head -c 10 lnmp-install.log
点击数:4