命令功能:用来打印文件内容的开头,默认显示10行
命令格式:head [选项] file
常用选项:
-c 显示字节数
-n num 要显示多少(num)行
-q 隐藏文件名
-v 显示文件名
举例:
显示文件test.txt内容的前10行
head test.txt
或
head -n 10 test.txt
显示文件test.txt的前7行
head -n 7 test.txt
显示文件test.txt除最后5行的所有内容
head -n -5 test.txt