#!/bin/bash
# nocomment - see config files without "#" comments or blank lines
#
# Usage: nocomment httpd.conf
#
# Erik Rossen <rossen@rossen.ch>

egrep -a -v '^[[:space:]]*#' $1 | egrep -a '[[:print:]]' 
