Closed lackovic closed 5 months ago
This can be simply done using the shell. For example, on Linux and bash, you can convert all files in a directory like this:
for file in *.tzx; do
echo "$file"
tzxtap --to "${file%.tzx}.tap" "$file"
done
If you need recursive conversion, you can do something similar with find
instead of for
.
How do I use
tzxtap
to convert allTZX
files in a directory toTAP
files, keeping their name and changing the extension toTAP
?If it's not possible, would you consider adding this functionality?