Skip to content

Instantly share code, notes, and snippets.

@MisterDaniels
Created November 10, 2021 11:26
Show Gist options
  • Save MisterDaniels/a080f51c68e86ab5bb41525f0d47075e to your computer and use it in GitHub Desktop.
Save MisterDaniels/a080f51c68e86ab5bb41525f0d47075e to your computer and use it in GitHub Desktop.
Imagick rotate image -90º
#!/bin/bash
for file in *.png; do
echo $file && convert "$file" -rotate -90 "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment