基本上,我想add-apt-repository ppa:(whatever)
在没有“按 Enter 继续”提示的情况下运行。我该怎么做?
本质上,我想在无需用户输入的情况下在 shell 脚本中部署添加存储库。
答案1
脚本如下
#! /bin/sh
sudo add-apt-repository ppa:(Your ppa here) -y
顺便说一句,你仍然需要输入密码。
基本上,我想add-apt-repository ppa:(whatever)
在没有“按 Enter 继续”提示的情况下运行。我该怎么做?
本质上,我想在无需用户输入的情况下在 shell 脚本中部署添加存储库。
脚本如下
#! /bin/sh
sudo add-apt-repository ppa:(Your ppa here) -y
顺便说一句,你仍然需要输入密码。