0
Q:

command to create jpeg in linux

$ sudo apt-get install imagemagick
0
#!/bin/bash

for file in `ls *.png`
do
    newfile=`echo $file | sed 's/png/jpg/'`
    convert $file $newfile
done
0

New to Communities?

Join the community