cut : ファイルの各行から指定フィールドを切り取る
[構文] cut オプション ファイル
オプション
-c 切り出す文字位置を指定
# cut -c'1-5' /etc/passwd
/etc/passwd の 1文字目から 5文字目を抽出
-d フィールドを分割するデリミタを指定
# cut -d':' -f3 /etc/passwd
/etc/passwd を ':' 区切りで 3番目のフィールドを抽出
-f 切り出すフィールドを指定
# cut -d':' -f4,5 /etc/passwd
/etc/passwd の 4-5番目のフィールドを抽出