Skip to content

Bash Signals

jaesjeon edited this page Aug 24, 2022 · 2 revisions

SIGTERM terminate process software termination signal

-> kill pid or kill 0

SIGINT terminate process interrupt program

-> CTRL-C

SIGQUIT create core image quit program

-> CTRL-\ or CTRL-4

SIGTTIN stop process background read attempted from control terminal

SIGTTOU stop process background write attempted to control terminal

SIGTSTP stop process stop signal generated from keyboard

-> CTRL-Z

SIGHUP terminate process terminal line hangup

  • huponexit

If set, Bash will send SIGHUP to all jobs when an interactive login shell exits (see Signals).

Clone this wiki locally