Skip to content

Instantly share code, notes, and snippets.

@we684123
Created March 13, 2025 03:30
Show Gist options
  • Save we684123/2ef1f6d17d9f34e7d8c85f9b1a72325b to your computer and use it in GitHub Desktop.
Save we684123/2ef1f6d17d9f34e7d8c85f9b1a72325b to your computer and use it in GitHub Desktop.
delete__pycache__.bat
@echo off
for /d /r . %%d in (__pycache__) do (
echo Deleting %%d
rd /s /q "%%d"
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment