Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 R 中,在带有 xfce4 的 Ubuntu 11.10 下运行,如果我不小心键入了 key control-4,R会立即退出- 不问任何问题 - 如果我创建了一个太大的作业,这有时会很有用。
问题是我偶尔会在工作中不小心按到 ctrl-4 并丢失它,这很烦人。
如何将此键码更改为其他内容?还是失败了,只是完全删除它?
谢谢!
Ctrl-4 正在发送 Unix Quit 信号。Ctrl-\ 会这样做。
要在 shell 中禁用,请执行以下操作:
trap '' 3
然后运行 R,尝试 ctrl-\ 或 ctrl-4 - 但是您想要 SIGQUIT 的任何其他内容都会在该 shell 中忽略它。改为发送 SIGKILL(kill -9)。