|
sed style search and replace
Different default addressing rule
- no address current line only
- 1,12 change lines 1 through 12
- 1,$ or % for changes to entire file
- .,.+10 from current line (“.”) to current line plus 10 lines (“.+10”)
Example: :%s/Ohio/Iowa/g
|