macOS: brew install bin2iso
by admin on Jul.11, 2019, under MAC OS X
bin2iso is an open source application allowing us to convert CD-ROM images in RAW / BIN format into the standardized ISO file format.
Installing bin2iso via homebrew (a package manager for macOS) is possible, however, it’s not part of the official taps as of today. If we want to install it anyways we’d have to add a third party tap as follows:
brew tap StarHack/homebrew-repo brew update
Afterwards we may simply install it:
brew install bin2iso
We may then use bin2iso as follows:
bin2iso SOMEFILE.cue
This is going to start the conversion and will create a new ISO-Image from our cue/bin/raw files.
After completion we may uninstall bin2iso like this:
brew uninstall bin2iso