Merge pull request #395 from eterps/patch-1

Added insert/add line examples
This commit is contained in:
Chris Allen Lane 2018-09-17 09:31:43 -04:00 committed by GitHub
commit 72f8c88394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -15,3 +15,9 @@ sed '/^$/d' file.txt
# To replace newlines in multiple lines
sed ':a;N;$!ba;s/\n//g' file.txt
# Insert a line before a matching pattern:
sed '/Once upon a time/i\Chapter 1'
# Add a line after a matching pattern:
sed '/happily ever after/a\The end.'