- or download this
|| die "File not found";
- or download this
|| die "Unable to open input file: $!";
# ... and ...
|| die "Unable to open output file: $!";
- or download this
use strict;
use warnings;
...
};
} # $temp_out falls out of scope; temp file should be removed even i
+f the move call failed.
# flock falls out of scope; lock is released on $target_file.
- or download this
use strict;
use warnings;
...
$line =~ s/foo/bar/;
}
} # $tied falls out of scope. File is closed, lock expires.