欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

head command usage

程序员文章站 2024-02-27 16:16:21
...

head命令: output the first part of files. 输出文件的前部。


语法: head [OPTION]… [FILE]…

常用选项:

-n : 后跟数字,表示输出文件的前几行。不加-n ,默认输出文件的前10行。

实例:


$head shellCommandCategories.md 
---
title: linux常用shell命令分类
date: 2018-12-05
tags:
categories: 
- linux常用shell命令
---
# 一:说明
本文对常用的shell命令进行了分类,便于记忆,命令的详细内容,请直接点击命令本身。当前收录187个命令。
<!-- more -->

说明:默认输出文件的前10行。

$head -n 2 shellCommandCategories.md 
---
title: linux常用shell命令分类

说明:用-n选项,输出文件的前2行。