Bash Scripting - Variables
What will be the output of the following bash script?
name=John echo $name
name=John echo $name
name is assigned the value John without spaces around =.echo $name prints the value stored in name, which is John.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions