Welcome! In this lesson, we will explore the powerful trap command in Bash. The trap command executes a set of commands when a script exits, whether it completes successfully or encounters an error. This command is crucial for managing cleanup operations in your scripts. Proper cleanup ensures that temporary files and other resources do not clutter your system or cause unexpected behaviors.
Let's get started!
The trap command in Bash allows you to specify commands that should be executed when a certain signal is received by the script. Signals are notifications sent to a process to notify it of various events. For example, the EXIT signal is sent when the script exits, either normally or due to an error. The INT (interrupt) signal triggers when you press Ctrl+C to interrupt the script.
The general syntax for the trap command in Bash is as follows:
This line instructs the script to run commands when the specified signal is received. commands can be a string of commands, another script or a function.
The following script creates a file called temp.txt then exits. We use the trap command to remove this temporary file once the script exits.
solution.sh
In this script:
- The
cleanupfunction removes temporary files and printslsoutput before and afterrm -f temp.txt. trap cleanup EXIT: Sets up a trap to call thecleanupfunction on script exit.touch temp.txt: Creates an empty file namedtemp.txt.- Two
echostatements simulate work with the temporary file. - When
exit 0is executed, thetrapcommand ensures thecleanupfunction is called to remove the temporary file.
The output of the script is:
The output of the script shows that when the exit 0 command is executed, the cleanup function is called, successfully removing the temp.txt. The trap command ensures that the cleanup function is executed regardless of how the script exits, providing a robust way to manage resources.
The trap command can handle various signals, not just EXIT. For instance, the INT signal is sent when you press Ctrl+C to interrupt a script. Let’s modify our script to handle the INT signal as well. This script sets up two cleanup functions: one for handling the EXIT signal and another for the INT signal. When the script exits normally, the cleanup_exit function is invoked. If the user interrupts the script by pressing Ctrl+C, the cleanup_int function prints a message indicating that the script was interrupted. However, it does not remove the temporary file.
In the script:
cleanup_exitdefines a function that prints a descriptive message and removestemp.txtcleanup_intdefines a function that prints a descriptive message but does not removetemp.txttrap cleanup_exit EXITinstructs the script to callcleanup_exitif the script receives anEXITsignaltrap cleanup_int INTinstructs the script to callcleanup_intif the script receives anINTsignalexit 0exits the script, sending anEXITsignal
If the script runs without the user pressing Ctrl+C, the output is:
The temp.txt no longer exists in the current working directory.
If the user pressed Ctrl+C, the output is:
temp.txt will still exist in the current working directory.
Great job! In this lesson, you learned how to:
- Define cleanup functions to manage resources.
- Use the
trapcommand to execute cleanup functions on script exit. - Handle various signals like
EXITandINTwith specific cleanup commands. - Manage multiple exit statuses using the
trapcommand to ensure proper cleanup for successful and failed script executions.
Now it's time to put your new knowledge into practice! Head over to the practice section to try these concepts on your own. By practicing, you'll gain confidence and become adept at writing scripts that handle resources efficiently. Happy scripting!
