在这部分代码中,我需要file.txt
随机读取:
...
open my $fh, '<', 'file.txt' or die $!;
while ( <$fh> ) {
next unless /\S/;
chomp;
my $response = $ua->get( "http://$_.domain.tld/" );
...
如何file.txt
随机读取行?
答案1
文件按顺序访问。
您可以做的是将整个文件读入数组并从中选择一个随机条目。
在这部分代码中,我需要file.txt
随机读取:
...
open my $fh, '<', 'file.txt' or die $!;
while ( <$fh> ) {
next unless /\S/;
chomp;
my $response = $ua->get( "http://$_.domain.tld/" );
...
如何file.txt
随机读取行?
文件按顺序访问。
您可以做的是将整个文件读入数组并从中选择一个随机条目。