linux之shell cut awk截取第1到倒数第2的字符串
[root@k8s-master ~]# cat testfileccc-ddd-12312312eee-fff-ddd-d12133a2dw-33ed-aaa-11112期望截取结果ccc-dddeee-fff-ddda2dw-33ed-aaa[root@k8s-master ~]# cat testfile |rev|cut -d "-" -f 2-$n|revccc-dddeee-fff-d
·
[root@k8s-master ~]# cat testfile
ccc-ddd-12312312
eee-fff-ddd-d12133
a2dw-33ed-aaa-11112
期望截取结果
ccc-ddd
eee-fff-ddd
a2dw-33ed-aaa
[root@k8s-master ~]# cat testfile |rev|cut -d "-" -f 2-$n|rev
ccc-ddd
eee-fff-ddd
a2dw-33ed-aaa
描述:查看文件,字符串取反,cut以 - 做分隔符截取第2到末尾的字符串,再取反,完成截取。
更多推荐
已为社区贡献1条内容
所有评论(0)