
10-10-2008
|
|
Shell programmer, author
|
|
|
Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,365
|
|
That looks as if it's being executed by a non-standard shell rather than by ksh. You can use the old-fashioned form of command substitution:
Code:
NOW=`date +%Y%m%d`
... but you should figure out why it is not using ksh.
How are you calling the script?
|