Bash Scripting - User Input
What will be the output of this script if run as
./script.sh dog cat?echo "First: $1" echo "Second: $2" echo "Count: $#"
./script.sh dog cat?echo "First: $1" echo "Second: $2" echo "Count: $#"
dog and cat, so $1=dog, $2=cat.$#=2.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions