2011-04-13 11:55:24 -03:00
|
|
|
# Find python file
|
|
|
|
alias pyfind='find . -name "*.py"'
|
|
|
|
|
2019-10-25 11:24:35 +00: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 12:38:17 -04:00
|
|
|
function pyclean() {
|
|
|
|
ZSH_PYCLEAN_PLACES=${*:-'.'}
|
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
|
2013-11-12 22:55:28 -02:00
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type d -name "__pycache__" -delete
|
2019-10-25 11:24:35 +00: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 12:38:17 -04:00
|
|
|
}
|
2012-03-22 04:34:19 +07:00
|
|
|
|
|
|
|
# Grep among .py files
|
2019-10-09 19:13:25 +02:00
|
|
|
alias pygrep='grep -r --include="*.py"'
|
2013-09-10 11:33:58 +02:00
|
|
|
|