常用参数
参数 | 作用 |
---|---|
-b | 以字节为单位进行分割 |
-c | 以字符为单位进行分割 |
-d | 自定义分隔符,默认为制表符 |
-f | 与 -d 一起使用,指定显示哪个区域 |
举个例子
1 | penn:~/ $ head -n 3 /etc/passwd | cut -d : -f 1,6 |
前五个含
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 评论