I am trying to create a bash script that will automatically install stuff using apt-get. I am using the following methods for the installation:
Method 1
Install(){
for TempVar in "$1"
do
eval 'sudo apt-get install '$TempVar
done
}
Method 2
Install(){
eval 'sudo apt-get install '$TempVar
}
for TempVar in "$1"
do
Install '(insert programs here separated by spaces)'
done
In both cases when something failed to install apt-get refused to install anything else. Naturally, apt-get functioned normally in the same script after the for loop ended. I am under the impression that apt-get retains its error status until the loop it was executed in is fully terminated. Is there a way to get around this?
I think that your code fails because you do all the installations in one apt-get command. And apt-get processes arguments given to it one-by-one. so when one of the arguments fails, then all that follows will be ignored.
So, In your calling code, you give it just one argument, namely the quoted string 'pkg1 pkg2 pk3':
then in your function, eval takes the one argument string, and turns it into a single apt-get command with 3 package arguments.
I just wrote and tested the following. I think it is what you want:
Notice, I don't quote my package list arguments to my function. Also note, I use "$@" in my for loop.