Skip to content

Instantly share code, notes, and snippets.

@kunishi
Created December 21, 2017 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunishi/530e28a6b2bf943aa98e6d43571b0cb8 to your computer and use it in GitHub Desktop.
Save kunishi/530e28a6b2bf943aa98e6d43571b0cb8 to your computer and use it in GitHub Desktop.
convert dmg to iso on MacOS X
#!/bin/bash
IFS=$'\n'
for file in *.dmg; do
base=`basename $file .dmg`
hdiutil convert -format UDTO -o $base.cdr $file
mv $base.cdr $base.iso
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment