mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-11-03 20:27:54 +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
 |