In bourne shell I have the following:
VALUES=`some command that returns multiple line values` echo $VALUES
Looks like:
\"ONE\"
The accepted solution didn't work for me (on OS X Yosemite). This is what I used:
echo -n $VALUES