Skip to content

Instantly share code, notes, and snippets.

@marcusandre
Created August 5, 2017 08:12
Show Gist options
  • Save marcusandre/b7f0161c38f7316649434f83f414ac92 to your computer and use it in GitHub Desktop.
Save marcusandre/b7f0161c38f7316649434f83f414ac92 to your computer and use it in GitHub Desktop.
Convert RAF files to JPG.
for i in *.RAF; do sips -s format jpeg $i --out "${i%.*}.jpg"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment