Quote:
Originally Posted by vgersh99
hm....... strange
try: sed "s/\$/,$(date)/"
|
No joy, still missing text.
Quote:
Originally Posted by vgersh99
'crontab' runs in Bourne shell - the '$(date)' is ksh/bash specific. Change '$(date)' to '`date`' in crontab - or write your own ksh/bash wrapper and call it from cron.
|
Thanks. Changed it to `date` and it is now displayed properly.
Thanks.