终端提示立即中止

终端提示立即中止

当发出需要中途提示的命令时(例如apt install),提示符立即地中止,如下所示:

self@localhost:~$ sudo apt install xterm
Reading package lists... Done
Building dependency tree       
Reading state information... Done
After this operation, 2,023 kB of additional disk space will be used.
Do you want to continue? [Y/n] Abort.
self@localhost:~$

我听说发生这种情况是因为应用程序无法从标准输入读取。所以这是一个问题。

我知道对于 apt,我可以跳过-y提示。对于其他需要提示但不提供此类选项的程序我该怎么办?可能是什么原因造成的?

相关内容