I am using following in my shell script
LOGDATE='date +%m%d%y_%H%M'
and then calling same as following in the same shell script
$LOGDATE
but it is printing output as following
echo $LOGDATE
date +%m%d%y_%H%M
could anyone tell what am i doing wrong?