sort(1) -k2 -n -r temp.txt %7C sed -n %273p%27
sort lines of text files
-k, --key=POS1[,POS2]
       start a key at POS1 (origin 1), end it at POS2 (default end of line).  See POS syntax below
-n, --numeric-sort
       compare according to string numerical value
-r, --reverse
       reverse the result of comparisons
source manpages: sort