2011-04-13 11:55:24 -03:00
|
|
|
# Find python file
|
|
|
|
alias pyfind='find . -name "*.py"'
|
|
|
|
|
2018-09-23 12:12:27 -04:00
|
|
|
# Remove python compiled byte-code and mypy cache in either current directory or in a
|
2012-10-26 12:38:17 -04:00
|
|
|
# list of specified directories
|
|
|
|
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
|
2018-09-23 12:12:27 -04:00
|
|
|
find ${ZSH_PYCLEAN_PLACES} -type d -name ".mypy_cache" -delete
|
2012-10-26 12:38:17 -04:00
|
|
|
}
|
2012-03-22 04:34:19 +07:00
|
|
|
|
|
|
|
# Grep among .py files
|
|
|
|
alias pygrep='grep --include="*.py"'
|
2013-09-10 11:33:58 +02:00
|
|
|
|