标签:cut 剪切
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
剪切345段数据
cut -d: -f 3,4,5 /etc/passwd
标签:cut 剪切
原文地址:http://11937277.blog.51cto.com/11927277/1880533