head - output the first part of files,用于输出文件开头的内容。
查看文件开头若干行的内容
使用-n lines
选项显示文件开头的前lines行。
1 | sunnogo@a3e420:~/test/hello$ cat hello.c -n |
另一种head命令的使用方法:
1 | sunnogo@a3e420:~/test/hello$ cat hello.c -n | head -n 5 |
查看文件开头若干字节的内容
使用-c bytes
显示文件前bytes字节的内容
1 | sunnogo@a3e420:~/test/hello$ head -c 5 hello.c |
输出文件开头内容的同时显示文件名
使用-v
选项显示文件名:
1 | sunnogo@a3e420:~/test/hello$ head -vn 5 hello.c |