in reply to Re: Symbolic references disallowed
in thread Symbolic references disallowed

A more idiomatic way to handle this would be to say:

sub cfgToARRAY { my ( $cfgfile ) = @_ ; open my $OUTPUT, '<', $cfgfile) or die "Can't open $cfgfile: $!"; chomp( my @array = <$OUTPUT> ); return @array; } ### my @OUTPUT = cfgToARRAY( "/informatica/scripts/arrayDisplayCDCWFs.cfg" + );