Skip to content

Instantly share code, notes, and snippets.

View jacekmigacz's full-sized avatar
🏠
Working from home

Jacek Migacz jacekmigacz

🏠
Working from home
  • Poland
  • 19:24 (UTC +02:00)
View GitHub Profile
@jacekmigacz
jacekmigacz / sed cheatsheet
Last active November 2, 2022 19:20 — 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'