Handling Signals in bash: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 26: Line 26:
  ...
  ...
</syntaxhighlight>
</syntaxhighlight>
For more details on how trap should be used, see: {{Internal|Trap|trap}}

Latest revision as of 19:24, 25 September 2019

External

Internal

Overview

The signals are caught with the trap built-in.

trap '<executable code or function name>' <signal>
 ...
 function sigint() {
 
   echo "signal INT received"
   exit 0   
 }
 
 trap 'sigint' INT
 ...

For more details on how trap should be used, see:

trap