<p>I have spent the last few weeks looking into go. In the process I have written my first go project: a simple command line tool to cleanup old logfiles:</p>
<p><a href="https://github.com/rqk89h/scrubber">https://github.com/rqk89h/scrubber</a></p>
<p>The idea is to run it as a cronjob. You can define directories and actions to take via a config file:
<a href="https://github.com/rqk89h/scrubber/blob/master/cmd/scrubber/example.config.toml">https://github.com/rqk89h/scrubber/blob/master/cmd/scrubber/example.config.toml</a></p>
<p>Currently there are two actions available:</p>
<ul>
<li>zip old logfiles</li>
<li>delete old log files</li>
</ul>
<p>Since this is my first project I wanted to ask for feedback on my code. Suggestions on how to optimize the project are highly welcome.</p>
<p>Thanks!</p>
