Debian:删除多余的软件包术语

Debian:删除多余的软件包术语

当我在 Debian 上安装 LAMP 服务器环境时,我使用以下代码:

apt-get upgrade lamp-server^ php-cli php-curl php-mbstring php-mcrypt php-gd python-certbot-apache -y

如果我添加更多的php-X包,它就会变得丑陋地长。

有没有办法把它缩短一点,如下所示?

apt-get upgrade lamp-server^ php-cli|curl|mbstring|mcrypt|gd python-certbot-apache -y

答案1

是的,你可以使用 bash大括号扩展生成具有相同前缀的参数。

正确的语法是:

apt-get upgrade lamp-server^ php-{cli,curl,mbstring,mcrypt,gd} python-certbot-apache -y

相关内容