Guest User

Untitled

a guest
Apr 24th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Awk 0.19 KB | None | 0 0
  1. #!/usr/bin/awk -f
  2. BEGIN {
  3.     lines = 0;
  4. }
  5.  
  6.  
  7. {
  8.     if($1 ~ /<.+>/)
  9.     {  
  10.         lines++;
  11.         if(lines % 2 == 0)
  12.             print "${color red}";
  13.         else
  14.             print "${color white}";
  15.     }
  16.    
  17.     print $LINE;
  18.    
  19. }
Add Comment
Please, Sign In to add comment