Guest User

Untitled

a guest
Mar 4th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Awk 0.14 KB | None | 0 0
  1. BEGIN{
  2.     FS="    "
  3. }
  4.  
  5. $0!~/^$/{  
  6.     if(NR == 1){ next }
  7.  
  8.     printf("%s",$1)
  9.     for(i = 2;i< NF; i++){
  10.         printf(",%s",$i)
  11.     }  
  12.     printf("\n")
  13. }
Add Comment
Please, Sign In to add comment