Skip to content

Instantly share code, notes, and snippets.

@fcurella
Created August 25, 2011 21:17
Show Gist options
  • Save fcurella/1171998 to your computer and use it in GitHub Desktop.
Save fcurella/1171998 to your computer and use it in GitHub Desktop.
command to clean stale *.pyc files
#!/bin/sh
find . -name '*.pyc' -print0|xargs -0 rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment