Skip to content

Instantly share code, notes, and snippets.

@Fatman13
Created August 7, 2014 10:44
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 Fatman13/f28e6a24d9702fad70c3 to your computer and use it in GitHub Desktop.
Save Fatman13/f28e6a24d9702fad70c3 to your computer and use it in GitHub Desktop.
Striped (for long conf files)
# 1. take out comments (starting with '#')
# 2. take out empty lines
grep -v '^#' my.conf | grep -v '^$' > stripped.my.conf
# credits http://ubuntuforums.org/showthread.php?t=2157515&p=12706474#post12706474
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment