shoxf/whois

9 lines
187 B
Plaintext
Raw Permalink Normal View History

2020-09-02 23:20:34 +00:00
#!/bin/bash
for fn in $@; do
echo "scanning $fn"
echo "Starting WHOIS $fn" | tee -a "index/$fn.txt"
2020-11-01 16:36:39 +00:00
whois $fn | grep 'Abuse\|abuse\|NetName\|descr:\|Org' | tee -a "index/$fn.txt"
2020-09-02 23:20:34 +00:00
done