Skip to content

Instantly share code, notes, and snippets.

@RimuruDev
Forked from rawaludin/psd2png.sh
Created May 19, 2024 07:28
Show Gist options
  • Save RimuruDev/9c4e18eda8844bcd7d63157769cfa3c0 to your computer and use it in GitHub Desktop.
Save RimuruDev/9c4e18eda8844bcd7d63157769cfa3c0 to your computer and use it in GitHub Desktop.
Batch Convert PSD to PNG in Mac OS X
#!/bin/bash
for i in *psd
do
name=${i%.psd}
convert "$name.psd[0]" -resize 100% "$name.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment