View Single Post

  #6 (permalink)  
Old 04-02-2006, 08:14 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,101
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Replace

Code:
sed -e 's/rcon_password "*"/rcon_password "bar"/g' server.cfg > server1.cfg
With
Code:
sed '/rcon_password/s/foo/bar/g' server.cfg >   server1.cfg
How it works?
Above sed will substitute "foo" with "bar" ONLY for lines which contain "rcon_password"
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote