Perl

從文件中隨機讀取(perl)

  • September 20, 2018

file.txt在這部分程式碼中,我需要隨機讀取:

...
open my $fh, '<', 'file.txt' or die $!;

while ( <$fh> ) { 
next unless /\S/;
chomp;
my $response = $ua->get( "http://$_.domain.tld/" );
...

如何file.txt隨機讀取行?

文件是按順序訪問的。

您可以做的是將整個文件讀入一個數組並從中選擇一個隨機條目。

引用自:https://unix.stackexchange.com/questions/470191