12 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env zsh
 | 
						|
# Run ubot2 forever
 | 
						|
# Eryn Wells <eryn@erynwells.me>
 | 
						|
 | 
						|
function start
 | 
						|
{
 | 
						|
    while true; do
 | 
						|
        env/bin/python rtmbot.py
 | 
						|
    done
 | 
						|
}
 | 
						|
 | 
						|
start
 |