comicfn2dict/bin/clean-pycache.sh
2023-12-21 13:04:52 -08:00

4 lines
91 B
Bash
Executable File

#!/bin/bash
# remove all pycache dirs
find . -name "__pycache__" -print0 | xargs -0 rm -rf