Terminal Ctrl characters

Ctrl-c Send SIGINT(9) signal
Ctrl-z Suspend process. Send SIGTSTP(20) signal. signal Useful with bg
Ctrl-d Send End-of-file character (EOF)
Ctrl-u Erase the input since the last EOF or beginning-of-line

Sources:

  1. TLPI p.388
  2. termios → Search for „Ctrl-“
  3. kill -l lists singal names withi its numbers
  4. stty -a source

No complete overview or definition file found so far