how can I add comments to logcheck ignore-rules?
Things I tried so far:
- # seems to match single # characters instead of starting a comment
- empty lines matches against everything
- $ matches against everything
- $^ seems to be an "impossible" regex, i.e. start of expression after end of expression
Is there a better way than starting lines with $^ ?
Is it guaranteed that lines starting with $^ will never match? What about performance?