I want to install multiple packages with apt-get
:
listOfPackages="packa packb packc"
listOfBlocked="badone"
apt-get install $listOfPackages
The selected packages recommend multiple packages. I want to install all but one of the recommended packages.
Is this possible? How? (Something like apt-get install $listOfPackages --BLOCKED=$listOfBlocked
would be nice.)