Created
November 21, 2017 23:23
-
-
Save GoofProg/4ecfcdb697b7697fded60ba70b687207 to your computer and use it in GitHub Desktop.
Extract all tar files and decompress - 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
| rem make sure 7zip is in command path. You may have to add it | |
| rem navagate to tar files | |
| for /f "delims=" %a in ('dir /b *.tar') do 7z x "%a" | |
| for /f "delims=" %a in ('dir /s /b *.rar') do 7z "%a" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment