cut在文件中负责剪切数据

命令用法:

       cut -b list [-n] [file ...]

       cut -c list [file ...]

       cut -f list [-d delim][-s][file ...]

       -d:指分隔符

第一,字节(bytes),用选项-b

第二,字符(characters),用选项-c

第三,域(fields),用选项-f


例:如何剪切/etc/passwd的第三段

cut -d: -f 3 /etc/passwd

spacer.gif

剪切345段数据

cut -d: -f 3,4,5 /etc/passwd

spacer.gif