Skip to content

Instantly share code, notes, and snippets.

@nolet7
nolet7 / sed cheatsheet
Created June 17, 2022 19:55 — forked from freewind/sed cheatsheet
magic of sed -- find and replace "text" in a string or a file
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'