Skip to content

Instantly share code, notes, and snippets.

@dlozeve
Last active May 16, 2019 13:21
Show Gist options
  • Save dlozeve/67861dcafc6276296da4381c1ec10642 to your computer and use it in GitHub Desktop.
Save dlozeve/67861dcafc6276296da4381c1ec10642 to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
BEGIN {
FS = "\t";
}
$2 ~ "^" ARGV[2] "$" {
count++;
if (count > 10)
exit;
total += $3;
print $1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment