For GNU sort: sort -k2M -k3n -k4
-k2Msorts by second column by month (this way “March” comes before “April”)-k3nsorts by third column in numeric mode (so that ” 9″ comes before “10”)-k4sorts by the fourth column.
See more details in the manual.