Where can one find a listing of all color combinations or such available to use with ack(-grep)
? I find that passing logs through ack-grep
can be quite helpful at detecting errors, warnings or various other conditions especially with colorization, however I haven't found an authoritative list of what combos may be used, etc.
tail -f development.log \
| ack-grep --flush --passthru --color --color-match=yellow "^.*warning.*"
I've seen options such as the standard colors: red
, blue
, yellow
, green
, etc.
And I've seen that you can use "white on_green"
But what else?