mirror of https://github.com/CrimsonTome/tldr.git
20 lines
572 B
Markdown
20 lines
572 B
Markdown
# sed
|
|
|
|
> Run replacements based on regular expressions.
|
|
|
|
- Replace the first occurrence of a string in a file, and print the result:
|
|
|
|
`sed 's/{{find}}/{{replace}}/' {{filename}}`
|
|
|
|
- Replace all occurrences of a string in a file, overwriting the file (i.e. in-place):
|
|
|
|
`sed -i 's/{{find}}/{{replace}}/g' {{filename}}`
|
|
|
|
- Replace all occurrences of an extended regular expression in a file:
|
|
|
|
`sed -r 's/{{regex}}/{{replace}}/g' {{filename}}`
|
|
|
|
- Apply multiple find-replace expressions to a file:
|
|
|
|
`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}`
|