Bash Scripting - Quoting and Expansion
Consider the script:
What will be the output when this script runs?
user="Jane Doe" echo "Welcome, $user!" echo 'Welcome, $user!'
What will be the output when this script runs?
