Skip to content

Instantly share code, notes, and snippets.

View kits-ragh's full-sized avatar

Raghvendra Mishra kits-ragh

  • New Delhi, India
View GitHub Profile
@r2k0
r2k0 / sed_snippets.sh
Last active March 16, 2024 01:59
sed examples
##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'
# triple space a file