]> git.phdru.name Git - dotfiles.git/blob - bin/rm-pyc
Feat(.vim/python/virtualenv.py): Search for `activate_this.py` in w32
[dotfiles.git] / bin / rm-pyc
1 #! /bin/sh
2
3 find . -name '*.py[co]' -delete &&
4 exec find . -name __pycache__ -type d -empty -delete