This is the script which I am trying to execute :
#!/bin/sh
VALUE="abcd"
echo "Please enter the value"
read VALUE1
if [ "$VALUE1" == "$VALUE " ]; then
echo "Correct"
else
echo "incorrect"
fi
after i execute and whenever i am putting any value also "abcd" I am always getting output as incorrect....can you plz help