add pylint script for laziness

This commit is contained in:
Chris Jones 2009-08-11 23:26:18 +01:00
parent c2891b26c7
commit 92fe7007ed
1 changed files with 6 additions and 0 deletions

6
terminatorlib/pylint.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
for file in *.py; do
echo -n "$file: "
pylint $file 2>&1 | grep "^Your code has been rated"
done