I have the following shell script.
if [ "$group" == "First*" ]]
then
[email protected]
elif [ "$group" == "Second*" ]]
then
[email protected]
fi
It does not throw any error , but does not execute the if statement properly if $group contains a First or a Second inside. Can any one tell me where I am going wrong.