linux下:
-c 发送 SIGINT 信号给前台进程组中的所有进程。常用于终止正在运行的程序。
-z 发送 SIGTSTP 信号给前台进程组中的所有进程,常用于挂起一个进程。
-d 不是发送信号,而是表示一个特殊的二进制值,表示 EOF。
-/ 发送 SIGQUIT 信号给前台进程组中的所有进程,终止前台进程并生成 core 文件。
Key Function
-c Kill foreground process
-z Suspend foreground process
-d Terminate input, or exit shell
-s Suspend output
-q Resume output
-o Discard output
-l Clear screen
-c Kill foreground process
-z Suspend foreground process
-d Terminate input, or exit shell
-s Suspend output
-q Resume output
-o Discard output
-l Clear screen