This is my shell script
echo "Name"
read name
if [ "$name" == "abcd" ]; then
echo "correct name"
else
echo "wrong name"
fi
echo "Password"
read password
if [ "$password" == "pwd" ]; then
echo "Correct password"
else
echo "Wrong password"
fi
echo "City"
read city
if [ "$city" == "bangalore" ]; then
echo "correct city"
else
echo "wrong city"
fi
I'm totally new to batch scripting.How do i write an equivalent .bat file?
echo "Name";read namein a bat file? – Anders Lindahl Aug 5 '11 at 6:22