I am making a bash script that installs various packages using apt-get install. However, I notice that if there is a line that says:
sudo apt-get install package1 package2 package3
and either of the packages is not found, none of the others will be installed. How do I make it keep going even if it can't find one of the packages?
Thanks in advance.
--ignore-missing
only workarounds for an issue in download. See http://superuser.com/a/844627/106974 – IsaacS Apr 05 '16 at 20:22