[ date ] 2002/02/19 | Tuesday | 09:32 AM
[ author ] Mike McIntyre <[EMAIL PROTECTED]>
> It's getting the first command done okay, but none of the subsequent
> ones. What simple but important thing am I missing ?
Try wrapping all those s-expressions inside a begin.
For example:
; gimp
Hi Mike -
At the risk of sounding like a broken record, you really don't
want to use
the GIMP for this task. It's ever so much easier with
ImageMagick. Try something like this:
for image in *.jpg
do
convert -quality 50 $image loqual_$image
done
Read man convert for all the details.
There m