whois aswell

This commit is contained in:
vulpine 2020-09-02 19:20:34 -04:00
parent 3802ce8e26
commit c769bffad7
1 changed files with 8 additions and 0 deletions

8
whois Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
for fn in $@; do
echo "scanning $fn"
echo "Starting WHOIS $fn" | tee -a "index/$fn.txt"
whois $fn | grep Abuse | tee -a "index/$fn.txt"
done