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

# Remove python compiled byte-code
5
6
7
8
alias pyclean='find . -type f -name "*.py[co]" -delete'

# Grep among .py files
alias pygrep='grep --include="*.py"'