Skip to content

Instantly share code, notes, and snippets.

@killertilapia
Created December 19, 2016 08:14
Show Gist options
  • Save killertilapia/310da5a3e34b7572dce8c436d31ede3d to your computer and use it in GitHub Desktop.
Save killertilapia/310da5a3e34b7572dce8c436d31ede3d to your computer and use it in GitHub Desktop.
Bash command to remove old or stale *.pyc files in project directory
find . -type f -name "*.pyc" -exec rm -v {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment