问题: ctrl + U 不会终止我的终端程序。
详细信息:以下是ssty --all
的结果:
speed 38400 baud; rows 24; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = M-^?; eol2 = M-^?;
swtch = M-^?; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W;
lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 hupcl -cstopb cread -clocal -crtscts
-ignbrk brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff
-iuclc ixany imaxbel iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
如您所见,它描述了可用的信号中断:
^ C = intr
^ \ = 退出
^ U = kill
等...
这是一个无限运行的程序:
int main (){while(true){}}
ctrl + C 有效
$./main
^C
$
ctrl + \ 有效
$./main
^\[1] 6331 quit (core dumped) ./main
$
ctrl + U 不工作。
为什么我不能这样杀死终端程序?
我当然可以找到进程ID并运行kill -9 <PID>
,
但我希望速记有效。
我在Ubuntu上:
lsb_release --all
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty
这是我的终端规格,但我尝试过其他终端(可能不相关)
gnome-terminal --version
GNOME Terminal 3.6.2
它也不适用于xterm。我也试过不同的贝壳:
sh
,bash
,ans zsh
。
问题是什么?我现在应该在哪里看看?
答案 0 :(得分:1)
kill
输出中的 stty
指的是终止线字符,即按^U
删除到该行的开头。
发送中断信号的字符为intr
,quit
,susp
,并且在某些系统上(不在Linux IIRC上)dsusp
。