중간에 프롬프트가 필요한 명령을 실행하는 경우(예 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:~$
응용 프로그램이 표준 입력에서 읽을 수 없기 때문에 이런 일이 발생한다고 들었습니다. 그래서 이것은 문제입니다.
나는 적절하게 -y
프롬프트를 건너뛸 수 있다는 것을 알고 있습니다. 프롬프트가 필요하지만 그러한 옵션을 제공하지 않는 다른 프로그램은 어떻게 해야 합니까? 원인은 무엇일까요?