Created
November 9, 2016 09:05
-
-
Save jonocairns/880a06c733b6a748e71de6b7008e8ec5 to your computer and use it in GitHub Desktop.
unzip all sub rars under folder with 7zip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FOR /D /r %%F in ("*") DO ( | |
pushd %CD% | |
cd %%F | |
FOR %%X in (*.rar *.zip) DO ( | |
"C:\Program Files\7-zip\7z.exe" x "%%X" | |
) | |
popd | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment