#1 排序
sort scores.txt #默认按第一列排序
cut -A scores.txt #查看有几列,^为制表符,$为结尾
sort -r scores.txt #默认按第一列排序倒序
awk '{print $2,$3}' scores.txt | sort
#2 按第二列数字大小排序
awk '{print $2,$3}' scores.txt | sort -n -k 2
#3 逆序排序
awk '{print $2,$3}' scores.txt | sort -n -r -k 2
#4 计算特异项,类似uniq
awk '{print $2,$3}' scores.txt | sort -u
#5 按多值排序
cat scores.txt | sort -t $'\t' -k 2 -k 3
#6 按照第二列中第三个字母排序
cat scores.txt | sort -t $'\t' -k 2.3 |head
#7 复杂排序
cat scores.txt | sort -t $'\t' -k 2,2 -k 3nr,3
|