Skip to content

Instantly share code, notes, and snippets.

@tomwojcik
Created July 11, 2020 18:55
Show Gist options
  • Save tomwojcik/180b554f683464a201a92469e8e4756c to your computer and use it in GitHub Desktop.
Save tomwojcik/180b554f683464a201a92469e8e4756c to your computer and use it in GitHub Desktop.
#!/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