主頁 > 知識庫 > shell字符截取命令之cut命令的實例詳解

shell字符截取命令之cut命令的實例詳解

熱門標簽:申請400電話有什么用 400電話申請找 貴陽400電話到哪里去辦理 天津智能外呼系統(tǒng)排名 電銷機器人加盟多少錢 4層電梯外呼控制系統(tǒng)設計 汨羅代理外呼系統(tǒng) 宿松高德地圖標注 網絡電話外呼系統(tǒng)撥號軟件

shell字符截取命令之cut命令的實例詳解

一 語法

cut [選項] 文件名
選項:
-f 列號:提取第幾列
-d 分隔符:按照指定分隔符分割列

 二 實戰(zhàn)

[root@localhost ~]# cat student.txt
1 furong F 85
2 fengj F 60
3 cang F 70
[root@localhost ~]# cut -f 2 student.txt
furong
fengj
cang
[root@localhost ~]# cut -f 2,4 student.txt
furong 85
fengj 60
cang 70
[root@localhost ~]# grep "/bin/bash" /etc/passwd|grep -v "root"|cut -f 1 -d ":"
cakin24
test
cls
[root@localhost ~]# cut -d ":" -f 1,3 /etc/passwd
root:0
bin:1
daemon:2
adm:3
lp:4
sync:5
shutdown:6
halt:7
mail:8
operator:11
games:12
ftp:14
nobody:99
systemd-bus-proxy:999
systemd-network:998
dbus:81
polkitd:997
abrt:173
unbound:996
tss:59
colord:995
usbmuxd:113
geoclue:994
rpc:32
rtkit:172
chrony:993
radvd:75
qemu:107
avahi-autoipd:170
setroubleshoot:992
rpcuser:29
nfsnobody:65534
saslauth:991
libstoragemgmt:990
pulse:171
gdm:42
gnome-initial-setup:989
avahi:70
sshd:74
postfix:89
ntp:38
tcpdump:72
cakin24:1000
test:1003
cls:1001

 三 cut命令的局限

df -h|cut -d " " -f 1,3

只能分割比較規(guī)則的文本,一般分割符是制表符或冒號。

不能簡單的用空格作為分割符。

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • ShellExecute函數(shù)用法的實例代碼
  • 一天一個shell命令 linux文本內容操作系列-cut命令詳解
  • Stream、WshShell、WshUrlShortcut對象及Shell.Application的參數(shù)與使用
  • 詳解Shell cut用法

標簽:烏蘭察布 昌都 贛州 撫州 連云港 臨沂 海北 廣東

巨人網絡通訊聲明:本文標題《shell字符截取命令之cut命令的實例詳解》,本文關鍵詞  shell,字符,截取,命令,之,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《shell字符截取命令之cut命令的實例詳解》相關的同類信息!
  • 本頁收集關于shell字符截取命令之cut命令的實例詳解的相關信息資訊供網民參考!
  • 推薦文章