Commit 3fdaf260 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #1026 from dir01/patch-1

Python plugin: added pygrep command, simplified pyclean
parents 383ee718 60c3fa93
......@@ -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"'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment