[vox-tech] sed question

David Margolis vox-tech@lists.lugod.org
Wed, 29 Oct 2003 20:38:49 -0800 (PST)


Great idea!  I just read about that feature a minute ago and it didn't
even occur to me that that might be the solution to my problem.  Are there
any recommended characters that won't be interpreted by sed or bash?
'#' will be interpreted as a comment in my
bash script, correct?

On Wed, 29 Oct 2003, Bryan Richter wrote:

>
> On Wed, Oct 29, 2003 at 08:06:38PM -0800, David Margolis wrote:
> > How do I do: 'sed s/$i\\/$i/$i/g' when $i might have it's own forward
> > slashes?
>
> The / character is arbitrary in sed expressions. Maybe try using
> 'sed s#$i\\/$i#$i#g' ?
>
> -Bryan R
> _______________________________________________
> vox-tech mailing list
> vox-tech@lists.lugod.org
> http://lists.lugod.org/mailman/listinfo/vox-tech
>