17 lines
		
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| case $MODE in
 | |
|     echo_server)
 | |
|         python /usr/bin/echo_server.py
 | |
|         ;;
 | |
|     echo_server_ssl)
 | |
|         python /usr/bin/echo_server_ssl.py
 | |
|         ;;
 | |
|     broadcast_server)
 | |
|         python /usr/bin/broadcast_server.py
 | |
|         ;;
 | |
|     broadcast_server_ssl)
 | |
|         python /usr/bin/broadcast_server_ssl.py
 | |
|         ;;
 | |
| esac
 |