Quote:
Originally Posted by dixen
Batch decompress - it possible?
|
For batch file:
Code:
for /r %%f in (*.bundle) do ubt -d "%%f" "%%f.dec"
Or in parallel, use mparallel tool:
Code:
for /r %%f in (*.bundle) do echo ubt -d "%%f" "%%f.dec" >> run.txt
mparallel --input=run.txt