mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Python plugin: added pygrep command, simplified pyclean
This commit is contained in:
parent
1120f97305
commit
60c3fa9371
1 changed files with 4 additions and 1 deletions
|
@ -2,4 +2,7 @@
|
||||||
alias pyfind='find . -name "*.py"'
|
alias pyfind='find . -name "*.py"'
|
||||||
|
|
||||||
# Remove python compiled byte-code
|
# Remove python compiled byte-code
|
||||||
alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;'
|
alias pyclean='find . -type f -name "*.py[co]" -delete'
|
||||||
|
|
||||||
|
# Grep among .py files
|
||||||
|
alias pygrep='grep --include="*.py"'
|
||||||
|
|
Loading…
Reference in a new issue