Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lee-pai-long/32a2520eb6dc30bea9ac9a95a64d112e to your computer and use it in GitHub Desktop.
Save lee-pai-long/32a2520eb6dc30bea9ac9a95a64d112e to your computer and use it in GitHub Desktop.

[SED] Remove comments and empty lines from file

$ sed \
> -e '/^<comment_character>/d' \
> -e '/^$/d' \
> -i <file>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment