7 lines
296 B
Bash
7 lines
296 B
Bash
#!/bin/sh
|
|
# ----------------------------------------------------------------------------
|
|
# sudo apt-get install imagemagick
|
|
# check size of current image
|
|
# identify -format "%wx%h" imagefile
|
|
# convert Cuba-Libre-bereich.jpg -r cuba.jpg
|
|
for file in *.jpg; do convert $file -resize 50% $file; done |