#!/bin/bash for f in *.JPG do NEWNAME=`basename ${f} .JPG`_OK.jpg echo $NEWNAME convert -resize '1024!x768' $f $NEWNAME done
Post a Comment
No comments:
Post a Comment