Bash Scripting - Variables
What will be the output of this bash script?
var=5 var=10 echo $var
var=5 var=10 echo $var
var is first set to 5, then reassigned to 10.echo $var outputs 10.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions