2011-04-13 07:55:24 -07:00
|
|
|
# Find python file
|
|
|
|
alias pyfind='find . -name "*.py"'
|
|
|
|
|
2019-10-25 04:24:35 -07:00
|
|
|
# Remove python compiled byte-code and mypy/pytest cache in either the current
|
|
|
|
# directory or in a list of specified directories (including sub directories).
|
2012-10-26 09:38:17 -07:00
|
|
|
function pyclean() {
|
|
|
|
ZSH_PYCLEAN_PLACES=${*:-'.'}
|
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
|
2013-11-12 17:55:28 -07:00
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type d -name "__pycache__" -delete
|
2019-10-25 04:24:35 -07:00
|
|
|
find ${ZSH_PYCLEAN_PLACES} -depth -type d -name ".mypy_cache" -exec rm -r "{}" +
|
|
|
|
find ${ZSH_PYCLEAN_PLACES} -depth -type d -name ".pytest_cache" -exec rm -r "{}" +
|
2012-10-26 09:38:17 -07:00
|
|
|
}
|
2012-03-21 14:34:19 -07:00
|
|
|
|
|
|
|
# Grep among .py files
|
2019-10-09 10:13:25 -07:00
|
|
|
alias pygrep='grep -r --include="*.py"'
|
2013-09-10 02:33:58 -07:00
|
|
|
|