Created
July 12, 2016 06:33
-
-
Save ksloan/e9aa2fe70950b530b5ddaeb54e02bd2e to your computer and use it in GitHub Desktop.
convert all psd in current dir to pngs using convert
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
for f in `ls *.psd` | |
do | |
convert "${f}[0]" `echo $f | sed 's/.psd/.png/'` | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment