0
$ cat flaglist.log
flag1
flag2
flag3
flag4
$

Perl 代码

my $infile = "flaglist.log";
open my $fpi, '<', $infile or die "$!";
while (<$fpi>) {
    chomp;  
    if ($ENV{$_}) {   # something wrong here
        func($_);
    }       
    else {  
        print "oops\n";
    }       
}

$ perl code.pl
oops
oops
oops
oops
$

所有四个标志都是设置的环境变量的名称(我echo $flag1从 shell 中检查过)。

这里的 if 条件总是返回 false。如果我写$ENV{flag1},结果为 true 并按func()我的预期调用。

我在 if 语句中做错了什么?

4

1 回答 1

4

该代码似乎对我有用。尝试从输入行中删除任何空格:

while (<$fpi>) {
    s/\s+//g;
    # ...
}
于 2010-09-30T11:24:54.960 回答