Help for this page

Select Code to Download


  1. or download this
    open (LINKS, "$linksQuery") || die ("Can't open $linksQuery: $!");
    my @links = <LINKS>;
    close (LINKS);
    
  2. or download this
    for (@links) {
        chomp($_);
    ...
            push(@progress, $_);
        }
    }