1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-24 15:23:29 +02:00

Merge pull request #1026 from dir01/patch-1

Python plugin: added pygrep command, simplified pyclean
This commit is contained in:
Robby Russell
2012-05-20 19:48:31 -07:00
+4 -1
View File
@@ -2,4 +2,7 @@
alias pyfind='find . -name "*.py"'
# 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"'