【linux-shell】awk输出从某列开始之后的所有列

awk -F ',' '{if(NF >= 5) {printf $1"\t"; for(i=5;i<=NF;i++) printf $i;printf "\n"}}' 1.txt > 2.txt

 

你可能感兴趣的:(Linux)