Browse Source

Add OSX version of sed -- see #281, #293 and #332

Waldir Pimenta 9 years ago
parent
commit
474e589bfa
1 changed files with 23 additions and 0 deletions
  1. 23 0
      pages/osx/sed.md

+ 23 - 0
pages/osx/sed.md

@@ -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}}`