]>
git.rmz.io Git - dotfiles.git/blob - zsh/plugins/python/python.plugin.zsh
2 alias pyfind
='find . -name "*.py"'
4 # Remove python compiled byte-code in either current directory or in a
5 # list of specified directories
7 ZSH_PYCLEAN_PLACES
=${*:-'.'}
8 find ${ZSH_PYCLEAN_PLACES} -type f
-name "*.py[co]" -delete
11 # Grep among .py files
12 alias pygrep
='grep --include="*.py"'