vote up 0 vote down star

I'm working on a Ubuntu system and

Currently this is what I'm doing:

if ! which command > /dev/null; then
   echo -e "Command not found! Install? (y/n) \c"
   read
   if "$REPLY" = "y"; then
      sudo apt-get install command
   fi
fi

Is this what most people would do? Or is there a more elegant solution?

flag

Command names does not always reflect the package name they are belong to. What is you're larger goal? Why don't you simply try to install it, and worst case it won't, since it's already installed. – Török Gábor Aug 19 at 6:25

2 Answers

vote up 4 vote down check

To check if packagename was installed, type:

dpkg -s <packagename>

You can also use dpkg-query that has a neater output for your purpose, and accepts wild cards, too.

dpkg-query -l <packagename>

To find what package owns the command, try:

dpkg -S `which <command>`

For further details, see article Find out if package is installed in Linux and dpkg cheat sheet.

link|flag
vote up 2 vote down

This feature already exists in Ubuntu and Debian, in the command-not-found package.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.