Skip to content

Instantly share code, notes, and snippets.

View Hornbydd's full-sized avatar

Duncan Hornby Hornbydd

  • GeoData
  • Southampton, UK
View GitHub Profile
@fuzzmz
fuzzmz / extract.bat
Created June 7, 2012 21:52
Recursively extract archives in nested folders with 7-zip
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
)