2016-03-21 10:22:03 +00:00
|
|
|
# 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}}`
|
|
|
|
|
2016-04-21 19:13:01 +01:00
|
|
|
- Replace all occurrences of an extended regular expression in a file:
|
2016-03-21 10:22:03 +00:00
|
|
|
|
2016-04-21 19:13:01 +01:00
|
|
|
`sed -E 's/{{regex}}/{{replace}}/g' {{filename}}`
|
2016-03-21 10:22:03 +00:00
|
|
|
|
|
|
|
- Replace all occurrences of a string in a file, overwriting the file (i.e. in-place):
|
|
|
|
|
|
|
|
`sed -i '' 's/{{find}}/{{replace}}/g' {{filename}}`
|
|
|
|
|
2016-04-21 19:13:01 +01:00
|
|
|
- Replace only on lines matching the line pattern:
|
2016-03-21 10:22:03 +00:00
|
|
|
|
2016-08-08 08:09:34 +01:00
|
|
|
`sed '/{{line_pattern}}/s/{{find}}/{{replace}}/' {{filename}}`
|
2016-03-21 10:22:03 +00:00
|
|
|
|
|
|
|
- Apply multiple find-replace expressions to a file:
|
|
|
|
|
|
|
|
`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}`
|
2016-04-21 19:11:33 +01:00
|
|
|
|
|
|
|
- Replace separator / by any other character not used in the find or replace patterns, e.g., #:
|
|
|
|
|
|
|
|
`sed 's#{{find}}#{{replace}}#' {{filename}}`
|