Help for this page
if (!$line || $!) {
if (open(FH, $filename)) { # Here $! is meaningless. ... } # Since here we might have either success or failure, # here $! is meaningless.
my $isOpen = open($handle, $templateLocation) or die "foo: $!";