Skip to content

Instantly share code, notes, and snippets.

@adamatan
Created February 5, 2013 10:34
Show Gist options
  • Select an option

  • Save adamatan/4713612 to your computer and use it in GitHub Desktop.

Select an option

Save adamatan/4713612 to your computer and use it in GitHub Desktop.
sed cheat sheet
# Remove empty lines
sed '/^$/d'
# Remove lines that begins with '#'
sed 's/^#.*//g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment