Skip to content

Instantly share code, notes, and snippets.

@sroccaserra
Created February 20, 2020 14:57
Show Gist options
  • Save sroccaserra/fa3f59f6749f0d347e66e4ba088ade5d to your computer and use it in GitHub Desktop.
Save sroccaserra/fa3f59f6749f0d347e66e4ba088ade5d to your computer and use it in GitHub Desktop.
Add colors to clojure test runner
#!/usr/bin/env awk -f
{ color = 0 }
/actual/ { color = 31 }
/0 failures, 0 errors|expected/ { color = 32 }
{ print "\033["color"m"$0 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment