首页 > 其他 > 详细

cut--修剪小能手

时间:2019-11-03 13:58:04      阅读:76      评论:0      收藏:0      [点我收藏+]

cut命令

cut原理:以每一行位一个处理对象。

参数选项 解释说明
-b 以字节为单位进行分割
-c 以字符为单位进行分割(对切割中文有奇效)
-d 自定义分隔符号,默认以tab为分隔符

1:-b  参数的例子
[root@localhost tmp]# cat test.txt    
abcdefg
abcdefg
abcdefg


[root@localhost tmp]# cut -b 3 test.txt   ###只输出第三个字节
c
c
c

[root@localhost tmp]# cut -b -3 test.txt   ###输出从开始到第3个字节[闭区间]
abc
abc
abc

[root@localhost tmp]# cut -b 3- test.txt   ###输出从第3个字节到行末尾[闭区间]
cdefg
cdefg
cdefg

2:自定义分隔符号
[root@localhost tmp]# cut -d : -f 1  /etc/passwd    #-f 1:选择输出第1个区域
root
bin
daemon
adm
lp
sync
shutdown

[root@localhost tmp]# cut -d : -f 3-5 /etc/passwd     ###显示3到5列的区域

cut--修剪小能手

原文:https://www.cnblogs.com/zhoujun007/p/cut.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!