ブログ

ファイルの先頭の行を表示する方法

at_shiita.ishigaki
2021年12月20日 9時49分

ファイルの先頭の行を表示するにはheadコマンドを使用します。
※オプションを使用せずに、headコマンドを使用した場合は、先頭から10行表示されます。

[armadillo ~]# cat a.txt 
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
[armadillo ~]# head a.txt 
a
b
c
d
e
f
g
h
i
j

表示する行数を指定するには-nオプションを使用します。
※ここでは例として、a.txtの先頭から5行表示します。

[armadillo ~]# head a.txt -n 5
a
b
c
d
e

表示する文字数をバイト数で指定するには-cオプションを使用します。
※ここでは例として、a.txtの先頭から10バイト表示します

[armadillo ~]# head a.txt -c 10
a
b
c
d
e