How can i give space " " as input in shell script ?
Ex :
echo " Enter date for grep... Ex: Oct 6 [***Double space is important for single date***] (or) Oct 12 "
read mdate
echo $mdate
In this i get output as "Oct 6" But i want "Oct 6"
How can i do it ?