This commit is contained in:
GitHub Merge Button 2011-10-10 04:58:07 -07:00
commit 785be8d705

View file

@ -0,0 +1,5 @@
# Find python file
alias pyfind='find . -name "*.py"'
# Remove python compiled byte-code
alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;'