Welcome to the Monastery | |
PerlMonks |
Re^4: Prepending to a fileby afoken (Chancellor) |
on Oct 01, 2016 at 06:49 UTC ( [id://1173050]=note: print w/replies, xml ) | Need Help?? |
or die "Could not open file ", $file, ": $!"; Looks good. It seems you found a bug. Because filenames may contain spaces and other "invisible" characters, especially when the code generating the filename has a bug (e.g missing chomp), you may want to quote it in the error message. And you could use string interpolation for the filename. So: or die "Could not open file '$file': $!";Alexander
-- Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
In Section
Seekers of Perl Wisdom
|
|