Created
July 11, 2020 18:55
-
-
Save tomwojcik/180b554f683464a201a92469e8e4756c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
find . -name '*.pyc' -exec rm -f {} + | |
find . -name '*.pyo' -exec rm -f {} + | |
find . -name '*~' -exec rm -f {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment