Bash Scripting - User Input
What will be the output of this script when run as
./script.sh apple?if [ "$1" = "apple" ]; then echo "Fruit is apple" else echo "Fruit is not apple" fi
