Question #277009

Write a shell script to compare two strings input by the user for equality.

Expert's answer

read -p "Enter a string: " str1
  
if [ $str1 == "linux" ]
then
    echo "linux"
elif [ $str1 == "unix" ]
then
    echo "unix"
else
    echo "Neither linux nor unix"
fi

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS