I'm sure this has been asked before, but I honestly don't know what to search for. So please consider this tiny script:
#!/bin/sh
test=""Hello" "World""
set -x
echo $test
The result will be this:
+ echo '"Hello"' '"World"'
"Hello" "World"
But that's not what I want! I don't want to have single quotes around the echo arguments. What I want to have is this instead:
+ echo "Hello" "World"
Hello World
How can I achieve that please?
