Question #166

Author: admin
tags: Linux  
country=Australia

if [ $country = "Brazil" ]
then
echo 1
elif [ $country = "Australia" ]
then
echo 2
else
echo 3
fi
What will be printed after the shell script run?
1
2
3
Rate the difficulty of the question:
easyhard