cut只能识别一个空格,如果要使用cut的话,需要用tr -s将多个空格转换成一个,这样才能成功:
[root@localhost ~]# df -h|tr -s ’ ’ |cut -d ’ ’ -f2
Size
1.2G
1.2G
1.2G
1.2G
6.1G
1.2G
976M
243M
cut多个空格作为分割
于 2022-11-16 10:27:22 首次发布
cut只能识别一个空格,如果要使用cut的话,需要用tr -s将多个空格转换成一个,这样才能成功:
[root@localhost ~]# df -h|tr -s ’ ’ |cut -d ’ ’ -f2
Size
1.2G
1.2G
1.2G
1.2G
6.1G
1.2G
976M
243M