Skip to content

Instantly share code, notes, and snippets.

@FleXoft
Created November 1, 2018 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FleXoft/91da00fb1289369c9da178d42e87f1ff to your computer and use it in GitHub Desktop.
Save FleXoft/91da00fb1289369c9da178d42e87f1ff to your computer and use it in GitHub Desktop.
Make every 3rd line of input green to make it easier to follow the lines among others
function thirdline(){ awk '{if ( NR%3==0 ){ print "\033[32m" $0 "\033[0m"} else{ print } }'; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment