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

相關文章
相關標籤/搜索