Myscript is test.sh is looks like
_________________________________
#!/bin/bash
echo -n "Enter Time schedule in the following format [HH:MM],[HH:MM],..:"
read Ext_Sch
for val in `echo $Ext_Sch |tr ',' '\n'`
do
tmp=""
tmp=`echo $val | grep "^[0-2][0-4]:[0-6][0-9]"`
echo " After getting the Value of tmp is $tmp"
if [ "$tmp" = "" ]
then
echo "Invalid Format !! Re-enter Time schedule in the following format [HH:MM],[HH:MM],..:"
continue
fi
break
done
-------------------
I want give input like 27:40,10:30,17:40
Here this scripts should validate the HH:MM !!!
Please help me out
