Skip to content

Instantly share code, notes, and snippets.

@PatrickMcDonald
Created July 30, 2013 16:23
Show Gist options
  • Save PatrickMcDonald/6114483 to your computer and use it in GitHub Desktop.
Save PatrickMcDonald/6114483 to your computer and use it in GitHub Desktop.
Clean all vbw, exp and lib files recursively
@echo off
attrib -r *.lib /s > nul 2>&1
attrib -r *.exp /s > nul 2>&1
attrib -r *.vbw /s > nul 2>&1
del *.lib /s 2>nul
del *.exp /s 2>nul
del *.vbw /s 2>nul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment