# strip blank lines and lines beginning with *
# reads stdin, writes stdout

egrep -v '^[ 	]*$|^\*'
# the egrep has a blank and a tab inside brackets
