Skip to content

Instantly share code, notes, and snippets.

@ksloan
Created July 12, 2016 06:33
Show Gist options
  • Save ksloan/e9aa2fe70950b530b5ddaeb54e02bd2e to your computer and use it in GitHub Desktop.
Save ksloan/e9aa2fe70950b530b5ddaeb54e02bd2e to your computer and use it in GitHub Desktop.
convert all psd in current dir to pngs using convert
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