Created
December 27, 2015 20:04
-
-
Save ranisalt/094d376791556ea44824 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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