标签:cut命令
cut 把一个文件分段
-d 分隔符
-f 第几个字段
-c 第几个字符
-
以冒号分隔,截取第3段
[root@wy ~]# cut -d: -f 3 /etc/passwd
0
1
以冒号分隔,截取第3,6,5段
[root@wy ~]# cut -d: -f 3,6,5 /etc/passwd
0:root:/root
1:bin:/bin
本文出自 “linux” 博客,转载请与作者联系!
cut命令
原文地址:http://warm51fun.blog.51cto.com/3884274/1891383