From LedHed's Wiki
Jump to: navigation, search
(Created page with '== Inline Find and Replace == To do an inline find and replace using sed use the following syntax sed -i s/<FIND_TEXT>/<REPLACE_TEXT>/g -i = Inline<br> s/ = Search<br> /g = G...')
 
Line 8: Line 8:
 
s/ = Search<br>
 
s/ = Search<br>
 
/g = Global<br>
 
/g = Global<br>
 +
 +
 +
== Reference ==
 +
http://www.brunolinux.com/02-The_Terminal/Find_and%20Replace_with_Sed.html
 +
 +
  
 
[[Category:Linux]]
 
[[Category:Linux]]
 
[[Category:FreeBSD]]
 
[[Category:FreeBSD]]

Revision as of 18:04, 26 May 2010

Inline Find and Replace

To do an inline find and replace using sed use the following syntax

sed -i s/<FIND_TEXT>/<REPLACE_TEXT>/g

-i = Inline
s/ = Search
/g = Global


Reference

http://www.brunolinux.com/02-The_Terminal/Find_and%20Replace_with_Sed.html