1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 23:24:55 +02:00
tldr/pages/common/sed.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

35 lines
1,018 B
Markdown

# sed
> Edit text in a scriptable manner.
- Replace the first occurrence of a regular expression in each line of a file, and print the result:
`sed 's/{{regex}}/{{replace}}/' {{filename}}`
- Replace all occurrences of an extended regular expression in a file, and print the result:
`sed -r 's/{{regex}}/{{replace}}/g' {{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 only on lines matching the line pattern:
`sed '/{{line_pattern}}/s/{{find}}/{{replace}}/' {{filename}}`
- Delete lines matching the line pattern:
`sed '/{{line_pattern}}/d' {{filename}}`
- Print the first 11 lines of a file:
`sed 11q {{filename}}`
- Apply multiple find-replace expressions to a file:
`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}`
- Replace separator `/` by any other character not used in the find or replace patterns, e.g., `#`:
`sed 's#{{find}}#{{replace}}#' {{filename}}`