Skip to content

Instantly share code, notes, and snippets.

@InjectedPie
Created January 20, 2023 18:20
Show Gist options
  • Save InjectedPie/9173393fb2610d7116c3f4e13a0c23eb to your computer and use it in GitHub Desktop.
Save InjectedPie/9173393fb2610d7116c3f4e13a0c23eb to your computer and use it in GitHub Desktop.
batchconvert script for binmerge (https://github.com/putnam/binmerge): turns all bin cue disk images to a single bin+cue and puts it in /out/[diskname]
@echo off
for %%f in (*.cue) do (
echo [INFO] ################ Started merging of '%%~nf' ################
binmerge.exe "%%~nxf" --outdir "out/%%~nf" "%%~nf"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment