How to apt-get install multiple packages without stopping (if not found)?
I suggest an apt-get
option
sudo apt-get --ignore-missing install $list_of_packages
but be aware that missing dependences cannot be ignored, and even if you use --force
you can get a broken system.
for i in package1 package2 package3; do
sudo apt-get install $i
done