Terry Bailey wrote: > Hi, > > I have a Perl problem. > > $email = xyx at abc.net > > -e 's/laplace/$email/' This works for me. $ email="xyx at abc.net" $ echo laplace > foo $ perl -pe "s/laplace/$email/" foo xyx.net -Brian