用来截取某一个字段
语法: cut -d ‘分隔字符‘ [-cf] n 这里的n是数字
-d :后面跟分隔字符,分隔字符要用单引号括起来
-c :后面接的是第几个字符
-f :后面接的是第几个区块
[[email protected] ~]# cat /etc/passwd |cut -d ‘:‘ -f 1 |head -n5 root bin daemon adm lp
-d 后面跟分隔字符,这里使用冒号作为分割字符,-f 1 就是截取第一段,-f和1之间的空格可有可无。
[[email protected] ~]# head -n2 /etc/passwd|cut -c2 o i [[email protected] ~]# head -n2 /etc/passwd|cut -c1 r b [[email protected] ~]# head -n2 /etc/passwd|cut -c1-10 root:x:0:0 bin:x:1:1: [[email protected] ~]# head -n2 /etc/passwd|cut -c5-10 :x:0:0 x:1:1:
-c 后面可以是1个数字n,也可以是一个区间n1-n2,还可以是多个数字n1,n2,n3
[[email protected] ~]# head -n2 /etc/passwd|cut -c1,3,10 ro0
时间: 2024-10-10 23:22:43