This is a super simple gist, but I never can remember it.
#!/bin/bash
for file in *.jpg
do
echo "converting $file"
convert "$file" "$(basename "$file" .jpg).dds"
done
Originally found here: US Orthophotos 1.1
This is a super simple gist, but I never can remember it.
#!/bin/bash
for file in *.jpg
do
echo "converting $file"
convert "$file" "$(basename "$file" .jpg).dds"
done
Originally found here: US Orthophotos 1.1