linux下:
ctrl-c 发送 SIGINT 信号给前台进程组中的所有进程。常用于终止正在运行的程序。
ctrl-z 发送 SIGTSTP 信号给前台进程组中的所有进程,常用于挂起一个进程。
ctrl-d 不是发送信号,而是表示一个特殊的二进制值,表示 EOF。
ctrl-/ 发送 SIGQUIT 信号给前台进程组中的所有进程,终止前台进程并生成 core 文件。

Key Function 
Ctrl-c Kill foreground process 
Ctrl-z Suspend foreground process 
Ctrl-d Terminate input, or exit shell 
Ctrl-s Suspend output 
Ctrl-q Resume output 
Ctrl-o Discard output 
Ctrl-l Clear screen

相关文章:

  • 2022-12-23
  • 2022-01-17
  • 2022-12-23
  • 2022-01-02
  • 2021-08-17
  • 2021-11-12
  • 2021-08-25
猜你喜欢
  • 2021-09-30
  • 2021-09-10
  • 2022-01-10
  • 2021-11-04
  • 2021-10-04
  • 2021-08-21
  • 2022-01-24
相关资源
相似解决方案