Unix Power Tools
Trapping Exits Caused by Interrupts
by Jerry Peek
02/10/2000
If you're running a shell script and you press your interrupt key (like CTRL-c), the shell quits right away. That can be a problem if you use temporary files in your script because the sudden exit might leave the temporary files there. The trap command lets you tell the shell what to do before it exits. A trap can be used for a normal exit, too. See Table 1.
Here's a script named zpg that uses a temporary file named /tmp/zpg$$ in a system temporary-file directory. The shell will replace $$ with its process ID number. Because no other process will have the same ID number, that file should have a unique name. The script uncompresses the file named on its command line, then starts the pg file viewer. [1] The script uses traps -- so it will clean up the temporary files, even if the user presses CTRL-c. The script also sets a default exit status of 1 that's reset to 0 if pg quits on its own (without an interrupt).
#!/bin/sh # zpg - UNCOMPRESS FILE, DISPLAY WITH pg # Usage: zpg file stat=1 # DEFAULT EXIT STATUS; RESET TO 0 BEFORE NORMAL EXIT temp=/tmp/zpg$$ trap 'rm -f $temp; exit $stat' 0 trap 'echo "`basename $0`: Ouch! Quitting early." 1>&2' 1 2 15 case $# in 1) gzcat "$1" >$temp pg $temp stat=0 ;; *) echo "Usage: `basename $0` filename" 1>&2 ;; esac
There are two traps in the script:
The first trap, ending with the number 0, is executed for all shell exits -- normal or interrupted. It runs the command line between the single quotes. In this example, there are two commands separated with a semicolon (;). The first command removes the temporary file (using the -f option, so rm won't give an error message if the file doesn't exist yet). The second command exits with the value stored in the stat shell variable. Look ahead at the rest of the script - $stat will always be 1 unless the pg command quit on its own, in which case stat will be reset to 0. Therefore, this shell script will always return the right exit status -- if it's interrupted before it finishes, it'll return 1; otherwise, 0. [2]
The second trap has the numbers 1 2 15 at the end. These are signal numbers that correspond to different kinds of interrupts. On newer shells, you can use signal names instead of the numbers. There's a short list in Table 1. For a list of all signals, type kill -l (lowercase "L") or see your online signal(3) reference page.
This trap is done on an abnormal exit (like CTRL-c). It prints a message, but it could run any list of commands.
Table 1: Some UNIX Signal Numbers for trap Commands
| Signal Number | Signal Name | Explanation |
| 0 | EXIT | exit command |
| 1 | HUP | When session disconnected |
| 2 | INT | Interrupt -- often CTRL-c |
| 3 | QUIT | Quit -- often CTRL-\ |
| 15 | TERM | From kill command |
Shell scripts don't always have two traps. Look at the nom script for an example.
I usually don't trap signal 3 (QUIT) in scripts that I use myself. That gives me an easy way to abort the script without springing the trap (removing temporary files, etc.). In scripts for general use, though, I usually do trap it.
Also, notice that the echo commands in the script have 1>&2 at the end. That tells the Bourne shell to put the output of the echo command on the standard error instead of the standard output. This is a good idea because it helps to make sure that errors come to your screen instead of being redirected to a file or down a pipe with the other standard output text. (In this particular script, that doesn't matter much because the script is used interactively. But it's a good habit to get into for all of your scripts.)
If your trap runs a series of commands, it's probably neater to call a shell function than a list of commands:
trap funcname 1 2 15