首页 > 代码库 > linux命令

linux命令

1、比如一个文件有两列,如下,现在要交换两列的位置:

awk  ‘BEGIN{ OFS="\t"}{print $2,$1}‘  t est.txt | sort  > test1.txt