Files
wlan-lanforge-scripts/py-scripts/lf_help_check.bash
2021-09-27 14:53:26 -06:00

9 lines
160 B
Bash
Executable File

#!/bin/bash
FILES=`ls *.py`
for FILE in $FILES
do
echo $FILE
(timeout 10 python3 ./${FILE} --help > /dev/null && echo PASSED) || echo "FAILED ${FILE}"
done