terminator/terminatorlib/pylint.sh

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