Update scripts.

This commit is contained in:
CronyAkatsuki 2024-12-25 21:14:35 +01:00
parent 9eb0fa22a9
commit 614e626902
12 changed files with 201 additions and 101 deletions

8
cue2chd Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
for File in *.cue
do
[ -f "$File" ] || continue
chdman createcd -i "$File" -o "${File%.cue}.chd"
rm -v "$File" "${File%.cue}"*.bin
done