Skip to content

Instantly share code, notes, and snippets.

@GoofProg
Created November 21, 2017 23:23
Show Gist options
  • Select an option

  • Save GoofProg/4ecfcdb697b7697fded60ba70b687207 to your computer and use it in GitHub Desktop.

Select an option

Save GoofProg/4ecfcdb697b7697fded60ba70b687207 to your computer and use it in GitHub Desktop.
Extract all tar files and decompress - 7zip
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