Re: [Exim] stripping comments from exim.conf?

Top Page
Delete this message
Reply to this message
Author: Dan Egli
Date:  
To: Doug Sampson
CC: 'exim-users@exim.org'
Subject: Re: [Exim] stripping comments from exim.conf?
Doug Sampson wrote:

> I'm looking for a way to strip comments from an exim.conf file in order to
> reduce its size prior to posting to a list for review. Is there a command
> that does this? Am running Exim 3.35.
>



Not really hard:

grep -v ^" "*# /etc/exim/exim.conf > exim.conf.nocomments

will convert any line that has a # as the first non-whitespace character
to a blank line.


--
-- Dan