显示文件的前5行(两种方式)

head -n 5 test.txt
head -5 test.txt

 

显示文件的前100个字符

head -c 100 test.txt

 

显示文件的第10-20行

head -20 test.txt | tail -10