diff options
-rw-r--r-- | sed.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +# Sed, the standard stream editor + +Typical substitution: + + sed -e 's/pattern/replacement/flags' + +Can do multiple: + + sed -e 's/pattern/replacement/flags; s/bla/ble/' |