mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-05 13:17:53 +00:00
py-scripts ct_us_001_scripts.json added lf_help_check.bash ct_us_scripts.json added lf_help_check.bash
9 lines
166 B
Bash
Executable File
9 lines
166 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 "ERROR FAILED ${FILE}"
|
|
done
|