Files
MicroPythonOS/scripts/cleanup_pyc.sh
T

3 lines
121 B
Bash
Raw Normal View History

2026-01-26 14:49:45 +01:00
find internal_filesystem/ -iname "*.pyc" -exec rm {} \;
find internal_filesystem/ -iname "__pycache__" -exec rmdir {} \;