merge multiple JPG to PDF

Have you ever wated to create PDF file from multiple JPG images from Linux command line?

It is simple, just type:
convert `ls -v *.JPG` output.pdf

The convert command is part of imagemagick package. In Debian / Ubuntu / Mint you can install it via command:

apt-get install imagemagic

Print Friendly, PDF & Email