jetsung shell 将文件内容按 , 分割 awk -F, '{ for (i=1; i<=NF; i++) print $i }' a.txt # 正序 awk -F, '{ for (i=1; i<=NF; i++) print $i }' a.txt | sort -h