文件处理--cut命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件处理--cut命令相关的知识,希望对你有一定的参考价值。
cut - remove sections from each line of files,是截取命令,每一行按照字节、字符、分隔符进行截取。
常用选项:
-b 按照字节进行截取
-c 按字符进行截取
-d 指定分隔符进行截图,默认分隔符为TAB
-f 与-d结合使用,指定显示哪个区域
-n 取消分割多字节字符。仅和 -b 标志一起使用。如果字符的最后一个字节落在由 -b 标志的 List 参数指示的范围之内,该字符将被写出;否则,该字符将被排除
实例
[[email protected] ~]# cat /etc/passwd | cut -b 1,3,5 |head -2#取第1.3.5个字节列
ro:
bnx
[[email protected] ~]# cut -c 1-4 /etc/passwd|head -2#取1到4个字符列
root
bin:
[[email protected] ~]# cut -c 1,4 /etc/passwd|head -2#取1和4字符列
rt
b:
[[email protected] ~]# cat /etc/passwd | cut -d : -f 1 |head -2#取用户名列
root
bin
[[email protected] ~]# cat /etc/passwd | cut -d : -f 2 |head -2#取密码列
x
x
[[email protected] ~]# cat /etc/passwd | cut -d : -f 3 |head -2#取用户UID列
0
1
[[email protected] ~]# cut -f1,3 -d ":" /etc/passwd|head -2#以:分隔取第1和3列
root:0
bin:1
[[email protected] ~]# cut -c -4 test.txt#每一行都会进行截取操作
aaa
ccc
aaa
ggg
bbb
eee
[[email protected] ~]# cut -c 4- test.txt
111 222
333 444
111 222
555 666
777 888
999 000
[[email protected] ~]#
以上是关于文件处理--cut命令的主要内容,如果未能解决你的问题,请参考以下文章
文本处理命令- cat more less cut wc sort uniq
查看文件及内容处理命令 cat tac less head tail cut
为人民服务 方便快捷的处理 标准输入的字符以及文件内容顺序格式等相关命令操作(sort / uniq / tr / cut)