terminator/terminatorlib/pylint.sh

7 lines
114 B
Bash
Raw Normal View History

2009-08-11 22:26:18 +00:00
#!/bin/bash
for file in *.py; do
echo -n "$file: "
pylint $file 2>&1 | grep "^Your code has been rated"
done