Guest User

Untitled

a guest
Feb 20th, 2018
93
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.    FS = ":,"; OFS = "\t"; #Elegimos como separador de campos ":" y "," y como elemento separador la tabulación
  4. }
  5. {
  6.    if($3 >= 1000)
  7.       print ($5,$1)
  8. }
Add Comment
Please, Sign In to add comment