Bash Scripting - Variables
Consider the script
What will be the output of the third line
./myscript.sh apple banana with this content:echo "$0" echo "$1" echo "$#" echo "$@" echo "$$"
What will be the output of the third line
echo "$#"?