Hi,
I am using a basic Bash script that should run through all the jpeg files in a directory resizing them and writing them to the same filename in a different directory.:
Code:
ls *.jpg | xargs -I FILE convert FILE -resize 1000x1000 hq/*.jpg
This code used to work but now writes all the files to a file in the correct dirtectory called "*.jpg"
I am sure I am doing something daft, I just can't see what. Can anyone help?
Thanks
Andy