grep example
GNU grep example:$ grep -v "^#" /path/to/config/file
$ grep -v "^#" /etc/apache2/apache2.conf
sed example
GNU sed example:$ sed '/ *#/d; /^ *$/d' /path/to/file
$ sed '/ *#/d; /^ *$/d' /etc/apache2/apache2.conf
GNU grep example:$ grep -v "^#" /path/to/config/file
$ grep -v "^#" /etc/apache2/apache2.conf
GNU sed example:$ sed '/ *#/d; /^ *$/d' /path/to/file
$ sed '/ *#/d; /^ *$/d' /etc/apache2/apache2.conf