Is there any way to install multiple software at a single command via terminal? [duplicate]

Solution 1:

just type this

sudo apt-get install program1 program2 program3

in a terminal to install many programs in the same command. Or you can use install scripts. Which are basically .sh files that have these commands in them, example below:

sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install htop

Put it in a file and name it like script.sh and run it from a terminal.

Also look at this answer for more info,

  • How do I make post-install scripts?