[WBEL-users] Need some help with sed

Kirby C. Bohling kbohling@birddog.com
Mon, 15 Nov 2004 10:43:22 -0600


On Mon, Nov 15, 2004 at 10:35:24AM -0600, Benjamin J. Weiss wrote:
> Howdy, y'all! :)
> 

>         -e "$a\baseurl=$YUM_DAG" \

	My guess is that the shell is attempting to expand "$a" as a
variable.  You need to do something like "\$a\baseurl=$YUM_DAG".

	Kirby