1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 22:44:54 +02:00

Merge pull request #829 from tldr-pages/sed-osx

Add OSX version of sed -- see #281, #293 and #332
This commit is contained in:
Ruben Vereecken 2016-03-21 12:04:42 +01:00
commit aa60fa0f7a

23
pages/osx/sed.md Normal file
View file

@ -0,0 +1,23 @@
# 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 only on lines matching the line pattern:
`sed '/{{line_pattern}}/s/{{find}}/{{replace}}/'`
- 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}}`
- Apply multiple find-replace expressions to a file:
`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}`