Created
March 13, 2025 03:30
-
-
Save we684123/2ef1f6d17d9f34e7d8c85f9b1a72325b to your computer and use it in GitHub Desktop.
delete__pycache__.bat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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