terminator/terminatorlib/pylint.sh
2009-08-11 23:26:18 +01:00

7 lines
114 B
Bash
Executable File

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