How do I format a date in a KornShell (ksh) script to DD-MON-YYYY?
I have tried the following:
date \'+%d-%h-%Y\'
It returns
You could uppercase it yourself if caret uppercase is not supported in your environment:
date '+%d-%h-%Y' | tr 'a-z' 'A-Z'