#! /bin/sh
#
# Print the content of a file (or stdin) with comments removed

egrep -v -e "^\s*[#;]" -e '^\s*--' -e '^$' $@
