ctrl+c,ctrl+d,ctrl+z在linux中意义

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

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 screenlinux

来源于:http://edu.codepub.com/2011/0605/32079.phpshell

相关文章
相关标签/搜索