diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-02-16 23:33:24 -0500 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-02-16 23:33:24 -0500 |
commit | c4f0566b08e12cee6e9befb1ab2fbf99903e58fe (patch) | |
tree | d41d74a831d8e6f4619aa16feaa9355c28dc77bb | |
parent | 334fa6ba0b6b3d4ced4b963980febde56547bd12 (diff) |
Add sed
-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/' |