How do I format a date in a korn shell script to DD-MON-YYYY?
I have tried the following:
date '+%d-%h-%Y'
It returns 04-Nov-2009 I need for the Nov to be NOV (all caps). Can this be done with the date utility?
|
|
How do I format a date in a korn shell script to DD-MON-YYYY? I have tried the following:
It returns 04-Nov-2009 I need for the Nov to be NOV (all caps). Can this be done with the date utility? |
|||
|
|
|
|
This is what finally worked on unix(solaris).
returned: 04-NOV-2009 |
||
|
|
|
|
You could uppercase it yourself if caret uppercase is not supported in your environment:
|
|||
|
|
|
The ^ character forces uppercase in the GNU coreutils
Unfortunately, ^ is not POSIX standard for |
|||