A shell script contains the following lines:
MY_VAR="Linux System"
echo "I am learning about the '$MY_VAR'"
echo "I am learning about the \"$MY_VAR\""
What is the output when this script is executed?
-
A
I am learning about the '$MY_VAR'
I am learning about the "Linux System"
-
B
I am learning about the 'Linux System'
I am learning about the "$MY_VAR"
-
C
I am learning about the '$MY_VAR'
I am learning about the "$MY_VAR"
-
D
I am learning about the 'Linux System'
I am learning about the "Linux System"