I was trying to run a shell script and run it through Cygwin terminal in XP environment.
The script I have written is as follows -
#!/bin/bash
read -p "Enter Your name - " fname
if test "$fname" == "abcd"
then
echo "Thank you abcd"
fi
When I am trying to run it, after taking the input it gives an error -
': not a valid identifier: read: `fname
Though the commands are working fine when I am trying them in terminal.
Any suggession plz.
Thanks in advance...