python: add recurse flag to pygrep (#8217)

As described in #7053
This commit is contained in:
Maciej Motyka 2019-10-09 19:13:25 +02:00 committed by Marc Cornellà
parent ba57b5c706
commit c5b4613bf6

View file

@ -11,5 +11,5 @@ function pyclean() {
}
# Grep among .py files
alias pygrep='grep --include="*.py"'
alias pygrep='grep -r --include="*.py"'