Skip to main content
Home
About
Articles
Projects
Final year project
Sensors Platform
sensorspace
sjs205@github
swannonline
You are here
Linux Command Reference
Linux Command Reference
Batch resize image files
Command Description:
Batch resize image files using 'convert' from the ImageMagik package.
$
for i in $( ls *.jpg); do convert -resize 50% $i re_$i; done
Permissions: $
Flags:
resize Size to resize images by
Tags:
convert
View Commands