10 20 30 40
如何读取该文件并将数据存储到数组中?
所以我可以对这个数组进行一些操作。
open my $handle,'<',$path_to_file; chomp(my @lines = <$handle>); close $handle;
现在文件的行在数组@lines中。