1.概述

cut用于截取部分字符或字符串等

2.各参数含义

a.-b 选择部分字节

cut -b 1 选择第一个字节

cut -b 1- 选择第一个字节及其后的字节

cut -b 3,5,6-

1
2
3
4
5
6
7
8
9
10
11
[root@smart temp]# cat test.txt |cut -b 1
h
t
i
t
[root@smart temp]# cat test.txt |cut -b 1-
hello
this
is
test
[root@smart temp]#

b.-c 选择部分字符

1
2
3
4
5
[root@smart temp]# cat test.txt |cut -c 1-
hello
this
is
test

c. -d 分割,常与-f使用

1
2
3
4
5
6
#以空格为分割,取出第一个
[root@smart temp]# cat test.txt |cut -d' ' -f 1
hello
this
is
test

d. -f 区域

-i interval ,ping包间隔