Skip to content
Prev 1488 / 29559 Next

problem with R in a bash script

On Tue, 14 Nov 2006, massimodisasha wrote:

            
^^^^
echo "" is stripping out the internal ", so R get (er, ...
and there is no object "er". Look at R_temp - you'll see that the quotes 
are absent. Maybe say echo '':

$ echo "something"er"something else"
somethingersomething else
$ echo 'something"er"something else'
something"er"something else

since I don't see any single quotes in there.

Roger