mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 10:32:11 +03:00
Merge branch 'patch-3' of git://github.com/waldyrious/tldr into waldyrious-patch-3
Conflicts: pages/common/sed.md
This commit is contained in:
commit
a454ee1a5d
@ -2,18 +2,18 @@
|
||||
|
||||
> Run replacements based on regular expressions.
|
||||
|
||||
- Replace all occurrences of a string in a file, and print the result:
|
||||
- replace the first occurrence of a string in a file, and print the result
|
||||
|
||||
`sed 's/{{find}}/{{replace}}/g' {{filename}}`
|
||||
`sed 's/{{find}}/{{replace}}/' {{filename}}`
|
||||
|
||||
- Replace all occurrences of a string in a file, and overwrite the file contents:
|
||||
- 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 -E 's/{{regex}}/{{replace}}/g' {{filename}}`
|
||||
`sed -r 's/{{regex}}/{{replace}}/g' {{filename}}`
|
||||
|
||||
- Replace all occurrences of multiple strings in a file:
|
||||
- apply multiple find-replace expressions to a file
|
||||
|
||||
`sed -e 's/{{find}}/{{replace}}/g' -e 's/{{find}}/{{replace}}/g' {{filename}}`
|
||||
`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}`
|
||||
|
Loading…
Reference in New Issue
Block a user