oh-my-zsh/plugins/python/python.plugin.zsh
2011-04-13 11:55:24 -03:00

6 lines
141 B
Bash

# Find python file
alias pyfind='find . -name "*.py"'
# Remove python compiled byte-code
alias pycrm='rm `find . | grep -E "*.(pyc|pyo)$"`'