这是有效的代码...问题是当无法从某些站点获取IP时,脚本停止。是否有某种方法可以使脚本工作,即使某些站点无法获取 IP 形式?我需要像 VB On Error Resume Next 中一样的 somting...
our $file = abs_path("site.txt");
open (FH, "< $file") or die "Can't open $file for read: $!";
our @lines;
while (<FH>) {
chomp($hostname="$_"); #change this to your hostname
our($addr)=inet_ntoa((gethostbyname($hostname))[4]);
our @newarr;
push(@newarr,$addr); }