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

grep -Ev -e "^\s*([#;]|//|--)" -e '^$' $@
