comicfn2dict/bin/clean-pycache.sh

4 lines
91 B
Bash
Raw Permalink Normal View History

2023-12-21 13:04:52 -08:00
#!/bin/bash
# remove all pycache dirs
find . -name "__pycache__" -print0 | xargs -0 rm -rf