6 lines
		
	
	
	
		
			116 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			116 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
if [ ! $PYTHON ]; then
 | 
						|
       PYTHON="python3";
 | 
						|
fi
 | 
						|
cd "$(dirname $0)/src"
 | 
						|
exec $PYTHON -OOt gajim.py "$@"
 |