mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-06 05:28:31 +09:00
7 lines
339 B
Bash
Executable File
7 lines
339 B
Bash
Executable File
#!/usr/bin/env fish
|
|
|
|
for f in *.mod; python3 mod2taud.py $f assets/disk0/(basename $f .mod).taud; end
|
|
for f in *.s3m; python3 s3m2taud.py $f assets/disk0/(basename $f .s3m).taud; end
|
|
for f in *.it; python3 it2taud.py $f assets/disk0/(basename $f .it).taud; end
|
|
for f in *.xm; python3 xm2taud.py $f assets/disk0/(basename $f .xm).taud; end
|