Created
May 24, 2018 09:17
-
-
Save omeranson/393752f43498226e89a22a78cb128294 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/awk -f | |
function red(s) { | |
return "\033[1;31m" s "\033[0m " | |
} | |
/idle_age=.,/ { $0 = red($0) } | |
{ print } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment