Browse code

Merge pull request #274 from diofeher/master

A python plugin

Robby Russell authored on 10/10/2011 at 12:07:35
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 pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;'