cut 抽取列
cut 命令可以提取文本文件或STDIN数据的指定列
格式 cut [OPTION]... [FILE]...
常用选项
-d DELIMITER: 指明分隔符,默认tab
-f FILEDS:
#: 第#个字段,例如:3
#,#[,#]:离散的多个字段,例如:1,3,6
#-#:连续的多个字段, 例如:1-6
混合使用:1-3,7
-c 按字符切割
--output-delimiter=STRING指定输出分隔符
范例 取ip
[root@centos7 data]# ifconfig |head -n2 |tail -n1|cut -d" " -f10
10.0.0.150
解释:head -ne 取前两行 然后在 tail -n1 是取倒数第一行 cut -d” “ 指定空格为分割符 -f10 取第10列
因为展示信息前的inte 前面几个空格不好数,所以在加个tr -s " " 意思是多个空格合并成1个
[root@centos7 data]# ifconfig |head -n2 |tail -n1|tr -s " " |cut -d" " -f3
10.0.0.150
范例:取分区利用率
[root@centos7 data]# df|tr -s ' ' '%'|cut -d% -f5
或
[root@centos7 data]# df|tr -s " " %|cut -d% -f5
结果
Use
0
0
1
0
2
1
12
0