Ubuntu Bash Shell Komutlarıyla Döngü Whois

Ubuntu Bash Shell Komutlarıyla Döngü

whois domainadi.com | grep ‘No match’ >> deneme.txt

for i in `cat hosts.txt`; do whois $i.com | grep match >> bos.txt;done

for i in `cat hosts.txt`; do whois $i.com | grep match >> bos.txt;done
for i in ‘cat hosts.txt’; do whois $i.com | grep ‘No Match’ >> bos.txt; done

for i in denenm4444444; do whois $i.com >> x.txt; grep Match x.txt >> bos.txt;done

for i in `cat hosts.txt` && for y in `cat uzanti.txt` do whois $i.$y | grep match >> bos.txt;done

#/bin/bash
s=1;
while [ $s -le 67 ];
do wget http://domainadi.com/$s
let s=$s+1;
done
s=1;
while [ $s -le 67 ];
do whois domainadi$s.com
let s=$s+1;
done

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.22_1171]
Rating: 0 (from 0 votes)