Linux用awk处理文本数据

awk -F',' -v OFS=' ' 'NR>1{print $1, $4, $6, $7}' demo2.csv | sort -t $' ' -k 1 -r

原文地址:https://www.cnblogs.com/mkxzy/p/awk.html