Files
rsa/pylint.sh
T
2026-06-24 16:33:39 +02:00

9 lines
113 B
Bash
Executable File

#!/bin/bash
if which pylint >/dev/null; then
pylint functions
else
pip install pylint
pylint functions
fi