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:
https://github.com/rqk89h/scrubber
The idea is to run it as a cronjob. You can define directories and actions to take via a config file: https://github.com/rqk89h/scrubber/blob/master/cmd/scrubber/example.config.toml
Currently there are two actions available:
- zip old logfiles
- delete old log files
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.
Thanks!
