Browse code

adding python plugin with some aliases

DiĆ³genes authored on 13/04/2011 at 14:55:24
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,5 @@
0
+# Find python file
1
+alias pyfind='find . -name "*.py"'
2
+
3
+# Remove python compiled byte-code
4
+alias pycrm='rm `find . | grep -E "*.(pyc|pyo)$"`'