Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于标题很清楚(我希望如此 :)),我正在寻找一种通过 apt-get 命令安装许多软件的简单方法,我创建了一个 shell 脚本,其中放置了我需要的所有软件,但它不是很干净我假设这样做。最干净的方法是告诉 apt-get 像命令 pip 那样读入一个文件。
提前致谢
将包列表放在一个文本文件(比如test.txt)中,包名用空格分隔,如下所示 -
test.txt
python ruby foo bar
然后你可以apt-get像这样安装 -
apt-get
sudo apt-get install $(cat test.txt)