Handling Signals in bash: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:


* [[bash#Subjects|bash]]
* [[bash#Subjects|bash]]
* [[Linux Signals]]
* [[trap]]


=Overview=
=Overview=
Line 12: Line 14:


  trap '<''executable code or function name''>' <''signal''>
  trap '<''executable code or function name''>' <''signal''>
<syntaxhighlight lang='bash'>
...
function sigint() {
  echo "signal INT received"
  exit 0 
}
trap 'sigint' INT
...
</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