Bash Scripting - Variables
Identify the error in this script snippet:
myVar="Hello" unsetmyVar echo $myVar
myVar="Hello" unsetmyVar echo $myVar
unset and the variable name.unsetmyVar is treated as a single command, causing an error.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions