]> git.phdru.name Git - dotfiles.git/blob - bin/rm-pyc
Feat(bin): Port scripts to Python 3
[dotfiles.git] / bin / rm-pyc
1 #! /bin/sh
2
3 find . -name '*.py[co]' -delete &&
4 exec find . -name __pycache__ -type d -empty -delete