diff options
author | Ian C <ianc@noddybox.co.uk> | 2019-06-09 07:51:18 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2019-06-09 07:51:18 +0000 |
commit | 72ef76cce94fa6ebeacfa26e87d6512c1960f5cf (patch) | |
tree | 7aad7a3e9941abd72e0c59bdec61fe8b9dbefece | |
parent | 2cac924018052232a82ad19c6066050fdc4fafc1 (diff) |
Added script to create ISOs on OSX.
-rwxr-xr-x | osxmkiso.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/osxmkiso.sh b/osxmkiso.sh new file mode 100755 index 0000000..7a65917 --- /dev/null +++ b/osxmkiso.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +name=$(basename $0) + +if [ ! "$2" ] ; then + echo $name: usage $name iso_file path + exit 1 +fi + +hdiutil makehybrid -o "$1" "$2" -iso -joliet |