handle signal keywords…Change the way BASH handles signal signal. signal can be the number of a signal or its name (with or without the ‘SIG’ at the beginning). The keywords say what change to make.
info signalsinfo handlePrint a table of all the kinds of signals and how BASH has been told to handle each one. You can use this to see the signal numbers of all the defined types of signals.
info handle is an alias for info signals.
The keywords allowed by the handle command can be abbreviated.
Their full names are:
stopBASH should stop your program when this signal happens. This implies
the print keyword as well.
nostopBASH should not stop your program when this signal happens. It may still print a message telling you that the signal has come in.
printBASH should print a message when this signal happens.
noprintBASH should not mention the occurrence of the signal at all.
stackBASH should print a stack trace when this signal happens.
nostackBASH should not print a stack trace when this signal occurs.