Guest User

Untitled

a guest
Feb 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.11 KB | None | 0 0
  1. #!/usr/bin/awk -f
  2. BEGIN {
  3.    FS = ":"; OFS = " ";
  4. }
  5. {
  6.    if($3 >= 1000)
  7.       print ($5,$1) | "sort -k2"
  8. }
Add Comment
Please, Sign In to add comment