Skip to content

Instantly share code, notes, and snippets.

@ruanhao
Created February 5, 2018 07:48
Show Gist options
  • Save ruanhao/018e1bd6e130fa1ca7d573b7ea4bb036 to your computer and use it in GitHub Desktop.
Save ruanhao/018e1bd6e130fa1ca7d573b7ea4bb036 to your computer and use it in GitHub Desktop.
#!/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