Add doc for sed(1)

waldyrious/alt-syntax
Pranav Raja 2013-12-11 21:50:11 +11:00
parent b7040ec87a
commit 989985bd4d
1 changed files with 16 additions and 0 deletions

16
osx/sed.md Normal file
View File

@ -0,0 +1,16 @@
# sed
> Run replacements based on regular expressions
- replace all occurrences of a string in a file, and print the result
`sed 's/{{find}}/{{replace}}/g' {{filename}}`
- replace all occurrences of a string in a file, and overwrite the file
contents
`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}}`