在 Debian 中一行安装东西时部分使用 -y 参数

在 Debian 中一行安装东西时部分使用 -y 参数

我有一个很长的 apt-get 安装序列,对于大多数软件包我需要参数-y

我可以用两行执行以下操作:

apt-get upgrade unattended-upgrades sshguard curl wget git ansible zip unzip tree mc lamp-server^ -y
apt-get upgrade python-certbot-apache

但有没有一种方法可以像这样在一行中完成所有操作?

apt upgrade unattended-upgrades sshguard curl wget git -y ansible zip unzip tree mc -y lamp-server^ python-certbot-apache

-y请注意序列内的两个参数。

我现在无法测试。

答案1

apt install -y unattended-upgrades sshguard curl wget git ansible zip unzip tree mc lamp-server^ && apt install python-certbot-apache 

相关内容