Skip to content

Instantly share code, notes, and snippets.

@retrography
Created February 4, 2015 17:28
Show Gist options
  • Save retrography/78e969a9e56d08a187a8 to your computer and use it in GitHub Desktop.
Save retrography/78e969a9e56d08a187a8 to your computer and use it in GitHub Desktop.
Converts a .cdr image (CD/DVD master image obtained from Disk Utility under MacOSX) to a .iso image
#!/bin/sh
input=$1
output=$(echo $1 | sed s/\.cdr$/\.iso/)
hdiutil makehybrid -iso -joliet -o $output $input
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment