View Single Post
  #13  
Old 27-07-2022, 06:38
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by dixen View Post
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
Reply With Quote
The Following 3 Users Say Thank You to Masquerade For This Useful Post:
dixen (27-07-2022), Gehrman (27-07-2022), kuyhaa (16-08-2022)