Username or Email
Password
Remember me
Sign in
Sign up
Add Paste
Add Collection
rankselect.awk
Text
No description
Guest
Download
Edit
#!/usr/bin/awk -f
BEGIN {
x = 0
}
{
if ($3 - x >= 25000 || x == 0 && $3 != 0) {
print $1 " " $3
x = $3
}
}
END {
if (x != $3) print $1 " " $3
}