Skip to content

Instantly share code, notes, and snippets.

@frankwwu
Created March 22, 2022 20:37
Show Gist options
  • Save frankwwu/669ddbfc68f5f0c80da509aa99684f0e to your computer and use it in GitHub Desktop.
Save frankwwu/669ddbfc68f5f0c80da509aa99684f0e to your computer and use it in GitHub Desktop.
Delete all obj and bin folders on Windows.
for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment