2011-04-13 16:55:24 +02:00
|
|
|
# Find python file
|
|
|
|
alias pyfind='find . -name "*.py"'
|
|
|
|
|
2019-10-25 13:24:35 +02: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 18:38:17 +02:00
|
|
|
function pyclean() {
|
|
|
|
ZSH_PYCLEAN_PLACES=${*:-'.'}
|
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
|
2013-11-13 01:55:28 +01:00
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type d -name "__pycache__" -delete
|
2019-10-25 13:24:35 +02: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 18:38:17 +02:00
|
|
|
}
|
2012-03-21 22:34:19 +01: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
|
|
|
|