Using the trap command

If a signal or software interrupt is generated while the script is running, then we can define what action is performed by that interrupt handler using the trap command. The trap command helps us in reassigning the system response to a particular signal through the user defined function or commands.

The syntax to use the trap command is either of the following:

$ trap 'command; command' signal-name
$ trap 'command; command' signal-number

The usage as per the preceding syntax is as follows:

trap 'echo "You pressed Control key"; exit 1'  0 1 2 15

This will print the message You pressed Control Key, any SIGINT, SIGHUP, or SIGTERM received by the process:

trap 'rm file.tmp; exit 1'  EXIT INT TERM HUP

When any of the SIGINT, SIGTERM ...

Get Learning Linux Shell Scripting now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.