[[email protected] ~]# cut [選項] 檔名
選項:
[[email protected] ~]# vi student.txt
ID Name gender Mark
1 Liming M 86
2 Sc M 90
3 Gao M 83
[[email protected] ~]# cut -f 2 student.txt
#提取第二列的內容
Name
Liming
Sc
Gao
[[email protected] ~]# cut -f 2,3 student.txt
#提取第二列和第三列的內容
Name gender
Liming M
Sc M
Gao M
[[email protected] ~]#cut-c 8- student.txt
#提取取每行從第8個字元到行尾,好像很亂啊,那是因為每行的字元個數不相等
gender Mark
g M 86
90
83
[[email protected] ~]# cut -d ":" -f 1,3 /etc/passwd
#以":"作為分隔符,提取/etc/passwd檔案的第一列和第三列
root:0
bin:1
daemon:2
adm:3
lp:4
[[email protected] ~]# df
#統計分割區使用狀況
檔案系統 1K-塊 已用 可用 已用% 掛載點
/dev/sda3 19923216 1848936 17062212 10% /
tmpfs 312672 0 312672 0% /dev/shm
/dev/sda1 198337 26359 161738 15% /boot
/dev/srO 3626176 3626176 0 100% /mnt/cdrom
[[email protected] ~]# df -h|cut -d""-f 1,3
檔案系統
/dev/sda3
tmpfs
/dev/sda1
/dev/sr0