cut最基本的用法:
-f 列号:提取第几列
-d 分隔符:按照指定分隔符分割列(默认是制表符tab)
测试用例:(制表符)
1.截取第二列:
[root@myfuture ~]# cut -f 2 student.txt Name furong fengj cang
2.截取第二列和第四列:
[root@myfuture ~]# cut -f 2,4 student.txt Name Mark furong 85 fengj 60 cang 70
3.截取/etc/passwd文件的普通用户的第一列:
[root@myfuture ~]# grep "/bin/bash" /etc/passwd | grep -v "root" | cut -f 1 -d ":" zabbix hadoop user1