head
命令用来显示文件的内容,和 cat
类似,不接参数时默认打印文件的前10行。
语法格式:head [参数] [文件]
常用参数:
示例
# 默认显示
head test.txt
# 显示文件的前20行
head -n 20 test.txt
# 显示文件的前20个字符,注意和行的区别
head -c 20 test.txt
head
命令用来显示文件的内容,和 cat
类似,不接参数时默认打印文件的前10行。
语法格式:head [参数] [文件]
常用参数:
示例
# 默认显示
head test.txt
# 显示文件的前20行
head -n 20 test.txt
# 显示文件的前20个字符,注意和行的区别
head -c 20 test.txt