Highlight log using grep with color context
From everythingsysadmin comes the handy tip that to colorize selected output in a file, but retain the context around it we can use the ^ pattern in a regex to match all files.
$some-command | egrep --color=always '^|running|waiting'












