[CentOS] sed help

Paul Heinlein heinlein at madboa.com
Tue Mar 9 17:08:15 UTC 2010


On Tue, 9 Mar 2010, chloe K wrote:

> Hi
>
> Can I know how to use sed to substitue 2 instead of 1 at the same time?
>
> eg:
>
> sed 's/pchloe.com/abc.com/ ; /192.92.123.5/10.10.0.3/g' orgfile >> newfile

sed \
   -e 's/pchloe\.com/abc.com/g' \
   -e 's/192\.92\.123\.5/10.10.0.3/g' \
   orgfile >> newfile

-- 
Paul Heinlein <> heinlein at madboa.com <> http://www.madboa.com/



More information about the CentOS mailing list