Skip to content

Instantly share code, notes, and snippets.

@wyattearp
Created February 25, 2021 23:22
Show Gist options
  • Save wyattearp/055fcf179befdfc80fa91559d85b6a3b to your computer and use it in GitHub Desktop.
Save wyattearp/055fcf179befdfc80fa91559d85b6a3b to your computer and use it in GitHub Desktop.
Quick script to batch convert a bunch of images with `convert` auto-orient
#!/bin/bash
mkdir -p out
mkdir -p bak
for i in `ls -1 *.jpg`; do
cp -v $i bak/$i;
convert $i -auto-orient out/$i;
done
mv out/* .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment