0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

adding python plugin with some aliases

This commit is contained in:
Diógenes 2011-04-13 11:55:24 -03:00
parent 971b071dc6
commit d6c150decc

View file

@ -0,0 +1,5 @@
# Find python file
alias pyfind='find . -name "*.py"'
# Remove python compiled byte-code
alias pycrm='rm `find . | grep -E "*.(pyc|pyo)$"`'