I am thinking of the use case of this output:
The program 'tiger' is currently not installed. You can install it by typing:
sudo apt-get install tiger
How can I get it to prompt me to install that package? For example it would output this:
The program 'tiger' is currently not installed. You can install it by typing:
sudo apt-get install tiger
# Confirmation can go here
[sudo] password for tim:
The following NEW packages will be installed
tiger tripwire
0 to upgrade, 11 to newly install, 0 to remove and 0 not to upgrade.
Need to get 8,416 kB of archives.
After this operation, 26.5 MB of additional disk space will be used.
Do you want to continue? [Y/n] # and/or confirmation can go here
I don't want to have to run it myself. How can I get it to do it automatically, and give me the option to not install?
Can't install -> Want to install this one thing? -> Start installing -> It's not just one thing, sure you want to continue? -> Install
. – Tim May 10 '15 at 15:28