cat abc.csv | awk -F"," '{ print $1","$2","$3","$4","$5","$6","$7","$8","$9","$10","$11","$12","$13","$14","$15","$16", "$18","$17 }' > xyz.csv
i want to copy first 16 field and then 17,18 field.
Is any other efficient way to minimize the above awk operation?