Aug 01, 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
1 Reply
Aug 01, 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