8行目: 8行目:


  $ cut -c 1-8 /etc/passwd
  $ cut -c 1-8 /etc/passwd
  $ cut -d " " -f 1,6 /etc/passwd
  $ cut -d" " -f1,6 /etc/passwd

2019年3月9日 (土) 03:48時点における版

オプション

-c
characters
-d
delimiter
-f
fields
$ cut -c 1-8 /etc/passwd
$ cut -d" " -f1,6 /etc/passwd