Hi all,
I'm looking for a solution to convert a set of files using the terminal and the command "convert" under linux. I can use "convert" for each file:
convert -quality 85 file.jpg file.jpg
But i'm looking for something like:
for each jpg do
convert -quality 85 $file $file
end
Can someone tell me, which command i can use?