Created
February 5, 2018 07:48
-
-
Save ruanhao/018e1bd6e130fa1ca7d573b7ea4bb036 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# -*- coding: utf-8 -*- | |
# Usage: $0 file1 file2 ... | |
# When this exits, exit all back ground process also. | |
trap 'kill $(jobs -p)' EXIT | |
# iterate through the each given file names, | |
for file in "$@"; do | |
# show tails of each in background. | |
tail -F $file | awk ' | |
{ flag = 0 } | |
/INFO/ { print "\033[32m" $1 "\033[39m"; flag = 1 } | |
/ERROR/ { print "\033[31m" $0 "\033[39m"; flag = 1 } | |
flag == 0 { print $0; } | |
' & | |
done | |
# wait .. until CTRL+C |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment