Create .CUE From .CHD Files

Windows

chd2cue.bat

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

 

Linux

convertFromChdToCue.sh

#!/bin/bash

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

 


Revision #2
Created 2024-06-09 21:42:24 UTC by Ryan
Updated 2025-03-12 17:12:16 UTC by Ryan