Skip to content

Instantly share code, notes, and snippets.

@0xbishop
0xbishop / sed cheatsheet
Created April 26, 2025 01:07 — forked from ssstonebraker/sed cheatsheet
Sed Cheatsheet
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'