Skip to content

Instantly share code, notes, and snippets.

@kylefox
Created November 22, 2011 06:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylefox/1385048 to your computer and use it in GitHub Desktop.
Save kylefox/1385048 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Recursively removes .pyc files from the current directory downwards.
find . -name "*.pyc" -delete
@kylefox
Copy link
Author

kylefox commented Nov 22, 2011

I find it much easier to remember rmpyc than the full find command.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment