重新格式化txt文件

重新格式化txt文件

我有一个具有以下格式的文本文件:

A  B  C  D  E  F

我想这样改变它:

B  A:D

并摆脱其他列。

答案1

使用awk

awk '{print $2,$1":"$4}' file.txt

相关内容