Skip to content

Instantly share code, notes, and snippets.

@dlfinis
Created March 25, 2019 16:33
Show Gist options
  • Save dlfinis/59028e1a954bb67bcfef438e5b9738bc to your computer and use it in GitHub Desktop.
Save dlfinis/59028e1a954bb67bcfef438e5b9738bc to your computer and use it in GitHub Desktop.
Tail with color
#!/bin/sh
tail ${@:1} | sed --unbuffered \
-e 's/\(.*FATAL.*\)/\o033[1;31m\1\o033[0;39m/' \
-e 's/\(.*ERROR.*\)/\o033[31m\1\o033[39m/' \
-e 's/\(.*Hibernate*\)/\o033[35m\1\o033[39m/' \
-e 's/\(.*WARN.*\)/\o033[36m\1\o033[39m/' \
-e 's/\(.*INFO.*\)/\o033[32m\1\o033[39m/' \
-e 's/\(.*DEBUG.*\)/\o033[34m\1\o033[39m/' \
-e 's/\(.*TRACE.*\)/\o033[30m\1\o033[39m/' \
#-e 's/\(.*Exception.*\)/\o033[37m\1\o033[0;39m/'
-e 's/\(.*null.*\)/\o033[31m\1\o033[39m/' \
-e 's/\(.*insert*\)/\o033[36m\1\o033[39m/' \
-e 's/\(.*select*\)/\o033[36m\1\o033[39m/' \
-e 's/\(.*[Ee]xception.*\)/\o033[1;39m\1\o033[0;39m/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment