博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux常用基本命令(head)
阅读量:5114 次
发布时间:2019-06-13

本文共 702 字,大约阅读时间需要 2 分钟。

head命令

作用:显示文件的头部内容,默认显示前面10行

格式:

head [option] [file]

-n <行数>

-c <字节>

ghostwu@dev:~/linux/more$ head ghostwu.txt this is ghostwuhow are youfile thank youfile thank youfile thank youfile thank youghostwu@dev:~/linux/more$ head -2 ghostwu.txt this is ghostwughostwu@dev:~/linux/more$ cat ghostwu.txt | head -4this is ghostwuhow are youghostwu@dev:~/linux/more$ head -c 10 ghostwu.txt this is ghghostwu@dev:~/linux/more$ cat -n ghostwu.txt | head     1    this is ghostwu     2         3         4    how are you     5         6         7    file thank you     8    file thank you     9    file thank you    10    file thank youghostwu@dev:~/linux/more$

 

转载于:https://www.cnblogs.com/ghostwu/p/9054250.html

你可能感兴趣的文章
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
python常用函数
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
数据库3
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>
[NOIP2013提高组] CODEVS 3287 火车运输(MST+LCA)
查看>>