Files
SchulSchachTV/clear_python_cache.sh
T

5 lines
153 B
Bash
Executable File

#!/bin/bash
# Löscht alle compilierten Python-Zwischendateien im Projekt
find . -type d -name __pycache__ -exec rm -r {} +
find . -name "*.pyc" -delete