python.plugin.zsh 158 Bytes
Newer Older
1
2
3
4
# Find python file
alias pyfind='find . -name "*.py"'

# Remove python compiled byte-code
Diógenes's avatar
Diógenes committed
5
alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;'