nationavon
MIS
I need the ability to execute a subroutine inside of a die subroutine. The die would be called if a file handle couldn't be opened. Should I just do a:
open(FILE, "file.txt"
or &mySub;
or
open(FILE, "file.txt"
or die("it died"
;
Thanks in advance.
Nathan
open(FILE, "file.txt"
or
open(FILE, "file.txt"
Thanks in advance.
Nathan