Search Results

10
votes

How can I catch and handle a signal in Perl?

Use the %SIG hash to install signal handlers. Example: $SIG{INT} = 'SigIntHandler'; Where SigIntHandler is a sub that you write to be called when an interrupt is caught. …