This can be done with a sed one-liner:
sed '/^#/d'
This says, “find all lines that start with # and delete them, leaving everything else.”
This can be done with a sed one-liner:
sed '/^#/d'
This says, “find all lines that start with # and delete them, leaving everything else.”