Merge branch 'sed' of git://github.com/jlinder/tldr into jlinder-sed

This commit is contained in:
Igor Shubovych
2014-05-18 01:11:06 +03:00

View File

@@ -14,3 +14,8 @@
- replace all occurrences of an extended regular expression in a file
`sed -E 's/{{regex}}/{{replace}}/g' {{filename}}`
- replace all occurrences of multiple strings in a file
`sed -e 's/{{find}}/{{replace}}/g' -e 's/{{find}}/{{replace}}/g' {{filename}}`