Page MenuHomePhabricator
Paste P5672

captcha-by-wiki.awk
ActivePublic

Authored by tstarling on Jul 5 2017, 4:33 AM.
Tags
None
Referenced Files
F8620927: captcha-by-wiki.awk
Jul 5 2017, 4:33 AM
Subscribers
None
/bad form input;/ {
bad[$5]++;
total[$5]++;
}
/passed;/ {
good[$5]++;
total[$5]++;
}
END {
print "Wiki\tGood\tBad";
for (db in total) {
print db "\t" good[db] "\t" bad[db];
}
}