Skip to content

Instantly share code, notes, and snippets.

@naraga
Created August 26, 2012 09:23
Show Gist options
  • Save naraga/3476571 to your computer and use it in GitHub Desktop.
Save naraga/3476571 to your computer and use it in GitHub Desktop.
Writes build output to the host highlighting error messages in red.
cat build_out.txt | %{switch -regex ($_) {"^err:" {write-host $_ -backgroundcolor "red"} default {write-host $_}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment