SIGTERM with a keyboard shortcut
stty is responsible for controlling this, you may already have one setup. You can check by doing:
$ stty -e
speed 38400 baud; 53 rows; 225 columns;
lflags: icanon isig iexten echo echoe echok echoke -echonl echoctl
-echoprt -altwerase -noflsh -tostop -flusho pendin -nokerninfo
-extproc
iflags: -istrip icrnl -inlcr -igncr ixon -ixoff -ixany imaxbel -iutf8
-ignbrk brkint -inpck ignpar -parmrk
oflags: opost onlcr -oxtabs -onocr -onlret
cflags: cread cs8 -parenb -parodd -hupcl -clocal -cstopb -crtscts
-dsrflow -dtrflow -mdmbuf
discard dsusp eof eol eol2 erase intr kill lnext
^O ^Y ^D <undef> <undef> ^? ^C ^U ^V
min quit reprint start status stop susp time werase
1 ^\ ^R ^Q ^@ ^S ^Z 0 ^W
The last few lines should look familiar, ^C=intr is the one you mentioned in your question. You can read how to set more via:
$ man stty
The set of available signals for a tty are SIGINT
(Ctrl+C), SIGTSTP
(Ctrl+Z) and SIGQUIT
(Ctrl+\). You can assign different characters to them, but those are the only available signals. For your purposes you may be able to use Ctrl+\ to send SIGQUIT
, although it acts like an error and causes a core dump by default. You can use the stty
command to see and change the settings.
I know that inside a terminal, Ctrl+C keyboard shortcut will send a SIGINT signal to the current foreground process.
Your knowledge is incorrect on two points:
- The signal is sent to the foreground process group.
- It's only CTRL+C if that is the special character that happens to be configured at the time. (That's the default on most modern systems, but historically it could have been the
DEL
character or something else.)
Is there a way to setup a keyboard shortcut for sending SIGTERM or even SIGKILL to the current process?
No. The line discipline controls what signals are sent, and those signals are hardwired. They are (in a standard Unix) SIGHUP
, SIGINT
, SIGTTOU
, SIGTTIN
, SIGQUIT
, and SIGTSTP
. There are no others generated by the line discipline.
Though you can edit your keybindings with stty -a
, it's not possible to create a SIGTERM
or SIGKILL
keybinding that will interact with your process.
Read more about it here.