12 lines
		
	
	
		
			134 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			134 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
main()
 | 
						|
{
 | 
						|
readarray -t pids < pids
 | 
						|
programGuiID=${pids[0]}
 | 
						|
serverID=${pids[1]}
 | 
						|
 | 
						|
    kill $programGuiID $serverID ;
 | 
						|
}
 | 
						|
main
 |