Skip to content

Instantly share code, notes, and snippets.

View bitmaskit's full-sized avatar
💻
Focusing

Valentin bitmaskit

💻
Focusing
  • EMEA
  • 18:07 (UTC -05:00)
View GitHub Profile
@bitmaskit
bitmaskit / sed cheatsheet
Created December 26, 2019 04:54 — 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'