On Tue, Aug 22, 2000 at 01:11:48PM +1000, Howard Lowndes wrote:
> This is an example of a script I am trying to put together:
> 
> #!/bin/sh
> PATH=/bin:/sbin:/usr/bin:/usr/sbin
> . /etc/site-params
> sed -e 's/CHARS/$CHARS/g' this.file
try

sed -e "s/CHARS/$CHARS/g" this.file

        If you use single quotes you don't get variable interpolation.


-- 
John


--
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://slug.org.au/lists/listinfo/slug

Reply via email to