If the files have the extension .JPG
#!/bin/bash
for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG; done
WordPress, Linux - scripting, coding and fixing.
WordPress, Linux - scripting, coding and fixing.
If the files have the extension .JPG
#!/bin/bash
for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG; done