Answers for "command to create jpeg in linux"

0

command to create jpeg in linux

#!/bin/bash

for file in `ls *.png`
do
    newfile=`echo $file | sed 's/png/jpg/'`
    convert $file $newfile
done
Posted by: Guest on October-24-2020
0

command to create jpeg in linux

$ sudo apt-get install imagemagick
Posted by: Guest on October-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language