http://www.perlmonks.org?node_id=431072


in reply to Re^2: Executing Systems Calls with Care
in thread Executing Systems Calls with Care

Will it work if you substitute &some_subroutine; instead of die?

Well, in principle, sure. But make sure that he some_subroutine realizes that there may be error conditions it can't handle, and dies if it encounters a situation it isn't explicitly designed to handle.

You need to be defensive when you're designing this subroutine. Defensive and paranoid.