Bash Scripting - Basics
What will be the output of this script?
#!/bin/bash name="Alice" echo "Hello, $name!"
#!/bin/bash name="Alice" echo "Hello, $name!"
name is set to "Alice".$name inside double quotes expands to "Alice".15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions