Ctrl + c 清除输入停止工作

Ctrl + c 清除输入停止工作

我习惯使用ctrl+c作为清除终端中输入字段的快速方法。我正在开发一组 Red Hat 服务器,但该服务器突然停止工作。我尝试grep使用它取消命令(以前有效),我得到的所有内容都^C打印为单独的行,并且 grep 继续工作。在某些情况下,ctrl+可以c起作用,例如停止top命令。

在我的 Ubuntu 机器上,点击ctrl+c添加^C到该行,然后给我一个可以输入的新行。在 RHEL 服务器上,它不执行任何操作。

我不确定从哪里开始寻找问题,有什么指示吗?

输出来自stty -a

$ stty -a
speed 38400 baud; rows 23; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd -cmspar 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

更新:陷阱的输出:

~$ trap
trap -- '' SIGINT
trap -- '' SIGQUIT
trap -- '' SIGTSTP
trap -- '' SIGTTIN
trap -- '' SIGTTOU

答案1

就我而言,以下方法达到了目的:

trap - INT

相关内容