Skip to content

Instantly share code, notes, and snippets.

@Digital39999
Created June 24, 2024 10:28
Show Gist options
  • Save Digital39999/64723ce2259161e81ce8be1acdf6c196 to your computer and use it in GitHub Desktop.
Save Digital39999/64723ce2259161e81ce8be1acdf6c196 to your computer and use it in GitHub Desktop.
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
DEL /Q "%%X"
)
popd
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment