Skip to content

Instantly share code, notes, and snippets.

@seventhskye
Last active October 19, 2015 14:38
Show Gist options
  • Save seventhskye/c018e11b2083312064ef to your computer and use it in GitHub Desktop.
Save seventhskye/c018e11b2083312064ef to your computer and use it in GitHub Desktop.
Grep out all commented and blank lines.
#!/bin/bash
grep -v '^$\|^\s*\#' $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment