8 lines
140 B
Plaintext
8 lines
140 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
for File in *.iso; do
|
||
|
[ -f "$File" ] || continue
|
||
|
chdman createdvd -i "$File" -o "${File%.iso}.chd"
|
||
|
rm -v "$File"
|
||
|
done
|