5 lines
153 B
Bash
Executable File
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
|