Skip to content

Instantly share code, notes, and snippets.

@omeranson
Created May 24, 2018 09:17
Show Gist options
  • Save omeranson/393752f43498226e89a22a78cb128294 to your computer and use it in GitHub Desktop.
Save omeranson/393752f43498226e89a22a78cb128294 to your computer and use it in GitHub Desktop.
#!/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