Skip to content

Instantly share code, notes, and snippets.

@seanfrischmann
Created August 1, 2018 18:31
Show Gist options
  • Save seanfrischmann/994781576e80bfb73ba9932faf032646 to your computer and use it in GitHub Desktop.
Save seanfrischmann/994781576e80bfb73ba9932faf032646 to your computer and use it in GitHub Desktop.
Tail your logs with color
#!/bin/bash
tail -F /path/to/logs/*.log | awk '
/INFO/ {print "\033[32m" $0 "\033[39m"}
/DEBUG/ {print "\033[34m" $0 "\033[39m"}
/ERROR/ {print "\033[31m" $0 "\033[39m"}
$0 !~ /INFO|ERROR|DEBUG/ {print $0}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment