Skip to content

Instantly share code, notes, and snippets.

@NewProggie
Created November 12, 2011 14:40
Show Gist options
  • Save NewProggie/1360605 to your computer and use it in GitHub Desktop.
Save NewProggie/1360605 to your computer and use it in GitHub Desktop.
Converting all psd files recursively into png files with spaces and brackets in each filename
find . -name "*.psd" | while read file; do NEU=`dirname "$file"`/`basename "$file" psd`png; convert "$file" "$NEU"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment