I have an array of file names which begin with the first 3 letters of the 12 months. 1 file for each day of the year. I would like to sort them in chronological order:
Jan->Feb->Mar->May->Jun-> .... ->Dec
I seem to remember away to sort based on an array, so i created an array @months=("Jan", ..., "Dec"); How do I use this with the sort function?