Shell-Script

如何在 Arch Linux 中使前端非互動?

  • December 28, 2020

在 Debian 中,我們有一個名為 的變數DEBIAN_FRONTEND,當設置為noninteractive停止提示時,它在腳本中很有用。我們在archlinux中有等價物嗎?因為,‘迴聲 y | ’ 當腳本有 20 行不同的行時真的很煩人

我們在archlinux中有等價物嗎?

不,您需要將--noconfirm選項傳遞給pacman.

當腳本有 20 行不同的行時真的很煩人

在腳本中,我喜歡用函式“屏蔽”命令:

pacman() {
  command pacman --noconfirm "$@"
}
pacman -S something
# really runs pacman --noconfirm -S something

引用自:https://unix.stackexchange.com/questions/625806