Skip to main content

Create .CHD From .CUE Files

Windows

cue2chd.bat

for /r %%i in (*.cue) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log

 

Linux

convertFromCueToChd.sh

#!/bin/bash

# Grab .cue file
for f in ./**/*.cue
do
	name=${f%.cue} # Remove '.cue' from file name
	chdman createcd -i "$name.cue" -o "$name.chd" --force
done