Create .CHD From .GDI Files

 

 

 

Windows

 

 

Linux

convertFromGdiToChd.sh

#!/bin/bash

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

 


Revision #1
Created 2024-06-10 08:14:23 UTC by Ryan
Updated 2025-03-12 17:12:42 UTC by Ryan