Skip to content

Instantly share code, notes, and snippets.

@deviousway
Created December 18, 2017 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deviousway/8a331b109f1df465faa9fef9ae0223db to your computer and use it in GitHub Desktop.
Save deviousway/8a331b109f1df465faa9fef9ae0223db to your computer and use it in GitHub Desktop.
Cat a File, Without the Comments
cat $filename | egrep -v "^#"
or
cat $filename | egrep -v "(^#.*|^$)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment