Linux shell scripting error for double quotes sentence closing
linux, quotes, shell
Solution
It means you've executed a line of code with only one double-quote character, like this:
echo "Hello
The shell is waiting for the other quote.
Problem
When I execute a script in a Linux shell, I get this output: ``` dquote> ``` What does this mean?