annotate contrib/whoisd/whoisd-cached.sh @ 1210:49ea22e393ba draft

descriptions
author cathugger <cathugger@cock.li>
date Thu, 19 Jul 2018 05:07:32 +0000
parents a461bd595421
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1207
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
1 #!/bin/sh
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
2 cd /var/db/resdb
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
3 commit=$(git log -1 | head -n1 | tr -cd 'a-f0-9')
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
4 query=$(head -n1 | tr -cd 'a-zA-Z0-9.:_-')
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
5 if ! cat "/var/cache/whois/${commit}-${query}" 2>/dev/null;then
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
6 printf "%s\n" "${query}" | /var/db/resdb/contrib/whoisd/whoisd.pl | tee "/var/cache/whois/${commit}-${query}"
a461bd595421 claimed n.ano for link shortener. some minor changes to whoisd and I guess pulled a new copy of marc.db.
epochqwert <epoch@hacking.allowed.org>
parents:
diff changeset
7 fi