-b:以字节为单位进行截取。
-c:以字符为单位进行截取。
001、
[root@PC1 test1]# ls a.txt b.txt [root@PC1 test1]# cat a.txt ewr23436546cfgfd [root@PC1 test1]# cut -b 2 a.txt w [root@PC1 test1]# cut -c 2 a.txt w
002、
[root@PC1 test1]# ls a.txt b.txt [root@PC1 test1]# cat b.txt 大师傅额外的是否 [root@PC1 test1]# cut -b 2 b.txt ▒ [root@PC1 test1]# cut -c 2 b.txt 师
标签:test1,cut,区别,PC1,cat,linux,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16850312.html