Advertisement
cd62131

to CSV

Jul 7th, 2018
3,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Awk 0.23 KB | None | 0 0
  1. #!/usr/bin/awk -f
  2. # chmod +x this_script.awk
  3. # ./this_script.awk your.dat
  4. BEGIN{OFS=",";print"\"TEST ID\"","\"TEST URL\"","\"main Email\"","\"sub Email\""}
  5. $2~/ID|URL|Email/{a[i++]=$NF}
  6. i==4{print a[0],a[1],a[2],a[3];i=0;next}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement