feat: add script for converting iso to chd.
This commit is contained in:
parent
f1c37c598f
commit
6276e0b53d
2 changed files with 11 additions and 0 deletions
7
modules/home-manager/scripts/bin/iso2chd
Executable file
7
modules/home-manager/scripts/bin/iso2chd
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
for File in *.iso; do
|
||||
[ -f "$File" ] || continue
|
||||
chdman createdvd -i "$File" -o "${File%.iso}.chd"
|
||||
rm -v "$File"
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue