ロシアの国歌を十分に覚えていない人のために:
for i in {200..225}; do nslookup 62.76.96.$i | grep "(?<=name = ).*$" -o -P ; done
updオプションの改善:
簡潔な
dig -t ptr +short {200..225}.96.76.62.in-addr.arpa
PowerShellを使用したWindows
for ($i=200; $i -le 223; $i++){(nslookup 62.76.96.$i)[3].ToString().Replace('.', ' ').Substring(9)}
PowerShellのないWindows
for /l %i in (200,1,255) do nslookup 62.76.96.%i