I am trying to report on the number of files created on each date. I can do that with this little one liner:
ls -la foo*.bar|awk \'{print $7, $6}\'|sort|uni
Assuming the name of the months only appear in the month column, then you could do this:
ls -la foo*.bar|awk '{sub(/Jan/,"01");sub(/Feb/,"02");print $7, $6}'|sort|uniq -c