Skip to content

Instantly share code, notes, and snippets.

@deviousway
Created December 18, 2017 18:36
Show Gist options
  • 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