0

I need to check out whether my linux system installation have "convert" command available. Is there a command to control this situation?

deepblue_86
  • 1,194

1 Answers1

1

To determine if a command is available

which <command>

In your case

which convert

Or use locate

sudo updatedb #necessary if you recently installed
locate convert

convert is a part of imagemagick , so to install

sudo apt-get install imagemagick
Panther
  • 102,067