Create .GDI From .CHD Files

 

 

Windows

 

 

Linux

convertFromChdToGdi.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.gdi" --force
done

Revision #1
Created 2024-06-10 08:13:00 UTC by Ryan
Updated 2025-03-12 17:12:31 UTC by Ryan