Skip to content

Instantly share code, notes, and snippets.

@hakjoon
Last active August 29, 2015 14:03
Show Gist options
  • Save hakjoon/8ba66b027b2eaf547165 to your computer and use it in GitHub Desktop.
Save hakjoon/8ba66b027b2eaf547165 to your computer and use it in GitHub Desktop.
Remove .pyc
#!/bin/bash
pyclean() {
find . -name "*.pyc" -delete
find . -type d -empty -delete
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment