for x in $(cat ./list_of_domains); do whois -H $x | awk 'BEGIN{RS=""}/Registrant/,/Registration Service Provider:/ {print} END{print "----------------\n"}' && sleep 5000; done >> ./domain_infomation
Tada!
Insane ramblings and utterances of the milkme crowd.
for x in $(cat ./list_of_domains); do whois -H $x | awk 'BEGIN{RS=""}/Registrant/,/Registration Service Provider:/ {print} END{print "----------------\n"}' && sleep 5000; done >> ./domain_infomation
tim.bowers@timDesktop ~ $cat ./bin/kill_drive #!/bin/bash echo 'You wish to kill '$1'. Are you sure? (y/n)' read consent if [ $consent != "y" ]; then echo 'Quitting' exit fi sudo shred -v /dev/$1; xmessage -nearmouse Finished killing $1 & exit