gpt4 book ai didi

perl - 如何使用GetOpt传递文件

转载 作者:行者123 更新时间:2023-12-02 08:47:24 25 4
gpt4 key购买 nike

我有一个程序,需要将文件名(和位置)传递给该程序。我怎样才能做到这一点?我已经阅读了GetOpt文档,所以请不要指向我那里。我的命令行如下:

perl myprogram.pl -input C:\inputfilelocation -output C:\outputfilelocation

我的GetOptions看起来像这样:

GetOptions('input=s' => \$input,'output=s' => \$output);



基本上,我需要弄清楚如何在while循环中访问该文件,该循环对文件中的行进行迭代并将每个行放入$ _
while ($input) {

...不起作用。请注意,在我的文件可以正常使用之前:
open my $error_fh, '<', 'error_log';
while (<$error_fh>) {

最佳答案

这对我有用。您的GetOptions似乎正确。打开文件并从文件句柄中读取,不要忘记检查错误:

use warnings;
use strict;
use Getopt::Long;

my ($input, $output);
GetOptions('input=s' => \$input,'output=s' => \$output) or die;

open my $fh, '<', $input or die;

while ( <$fh> ) {
## Process file.
}

关于perl - 如何使用GetOpt传递文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11422770/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com