1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00
Files
oh-my-zsh/plugins/python/python.plugin.zsh
2011-04-13 11:55:24 -03:00

6 lines
141 B
Bash

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