escaping spaces in command line --title
Hi,
I am having some trouble escaping the spaces in command line title when using a bash variable.
where I have
ebook-convert ... foo.epub ... --title$seed
or ebook-convert ...--title'$seed'
or ebook-convert ...--title"$seed"
where $seed="Adam Hall"
I am getting, respectively, title as
Adam
'Adam
"Adam
in other words, it is dropping off everything after the space. What am I doing wrong?
|