cut 的用法

常用参数

参数作用
-b以字节为单位进行分割
-c以字符为单位进行分割
-d自定义分隔符,默认为制表符
-f与 -d 一起使用,指定显示哪个区域

举个例子

1
2
3
4
penn:~/ $ head -n 3 /etc/passwd | cut -d : -f 1,6 
root:/root
daemon:/usr/sbin
bin:/bin

前五个含

1
$ cut /etc/passwd -c -5

第五个后

1
$ cut /etc/passwd -c 5-

只有第五

1
$ cut /etc/passwd -c 5

二到五间

1
$ cut /etc/passwd -c 2-5

本文链接:https://my.lmcjl.com/post/18346.html

展开阅读全文

4 评论

留下您的评论.