<br><br><div class="gmail_quote">On Fri, Jun 11, 2010 at 10:04 AM, Jerry Geis <span dir="ltr"><<a href="mailto:geisj@pagestation.com">geisj@pagestation.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi all,<br>
<br>
<br>
in a script if I have:<br>
VERSION="3.2.0"<br>
<br>
I can do:<br>
echo jj-$VERSION-jj<br>
and get jj-3.2.0-jj<br>
<br>
however if I do:<br>
echo jj_$VERSION_jj<br>
I get jj_<br>
<br>
How do I get the $VERSION to work with the underscores like the dashes do.<br></blockquote></div><br>You can use ${VERSION} to separate it.<br>