mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-30 18:27:53 +00:00
9 lines
160 B
Bash
Executable File
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
|