Linuxコマンド:cutコマンドの使い方

5806 ワード

1、cut用法(テキスト表示切り取り)
-d:フィールド区切り文字を作成し、デフォルトはスペース-f:表示するフィールドを作成-f 1:最初のフィールドを表示-f 1,3最初のフィールドを表示-f 1,3番目の-f 1-3最初のフィールドから3番目のフィールドを表示-b:バイト数を表示-c:文字を表示
2、例
今testがあります.cファイルは以下の通りです.
nii@mch:~/code$ cat test.c 
lightdm:x:119:129:Light Display Manager:/var/lib/lightdm:/bin/false
nii:x:1000:1000:wzj,,,:/home/nii:/bin/bash
sshd:x:120:65534::/var/run/sshd:/usr/sbin/nologin
mysql:x:121:132:MySQL Server,,,:/nonexistent:/bin/false
x2gouser:x:122:133::/var/lib/x2go:/bin/false
gdm:x:123:134:Gnome Display Manager:/var/lib/gdm:/bin/false
debian-spamd:x:124:135::/var/lib/spamassassin:/bin/sh
ftp:x:125:137:ftp daemon,,,:/srv/ftp:/bin/false
statd:x:126:65534::/var/lib/nfs:/bin/false

cut -b 1-8 test.c//ファイルの最初のバイトから8番目のバイトを表示
nii@mch:~/code$ cut -b 1-8 test.c 
lightdm:
nii:x:10
sshd:x:1
mysql:x:
x2gouser
gdm:x:12
debian-s
ftp:x:12
statd:x:

cut -b 1,8 test.c//ファイルの1バイト目と8バイト目を表示
nii@mch:~/code$ cut -b 1,8 test.c 
l:
n0
s1
m:
xr
g2
ds
f2
s:

cut -d : -f1 test.c//:分割子として、分割後の最初の領域が表示されます
nii@mch:~/code$ cut -d : -f1 test.c 
lightdm
nii
sshd
mysql
x2gouser
gdm
debian-spamd
ftp
statd

cut -d : -f1,3 test.c//:分割子として、分割後の1番目と3番目の領域が表示されます
nii@mch:~/code$ cut -d : -f1,3 test.c 
lightdm:119
nii:1000
sshd:120
mysql:121
x2gouser:122
gdm:123
debian-spamd:124
ftp:125
statd:126