Topic starter
01/08/2019 10:31 pm
Hi All,
In my shell script, i need yesterdays date to be assigned to a varaible. Using below command command I able to get the todays date. Please help me to get yesterdays date in same formay.(DD-MMM-YYYY)
today_date=date '+%d-%h-%Y' | tr [:lower:] [:upper:]
echo $today_date
This topic was modified 5 years ago by admin
Topic starter
01/08/2019 10:35 pm
This perfectly works for me in SunOS.
yesterday_date=TZ=EST+24 date +%d-%h-%Y | tr [:lower:] [:upper:]
echo ${yesterday_date}
01-Aug-2019