Skip to content

Instantly share code, notes, and snippets.

@ranisalt
Created December 27, 2015 20:04
Show Gist options
  • Save ranisalt/094d376791556ea44824 to your computer and use it in GitHub Desktop.
Save ranisalt/094d376791556ea44824 to your computer and use it in GitHub Desktop.
#!/usr/bin/bash
# usage: sh convert_sprites.sh <list of sprite dirs>
for dir in $@; do
convert \
\( $(find $dir ! -name '*_template.png' -type f | sort) -append \) \
\( $(find $dir -name '*_template.png' -type f | sort) -append \) \
-background none +append $(basename $dir).png
shift
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment