Bash Scripting - Quoting and Expansion
In bash scripting, what is the effect of using double quotes around a variable like
"$path" when the variable contains spaces?"$path" when the variable contains spaces?$path preserves spaces, treating the entire string as a single argument.path="My Documents"; echo "$path" prints with spaces [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions