Make every 3rd line of input green to make it easier to follow the lines among others
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
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