5 lines
		
	
	
	
		
			107 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			107 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
if [ -f /usr/bin/python3 ];then
 | 
						|
	rm /usr/bin/python
 | 
						|
	ln -s /usr/bin/python3 /usr/bin/python
 | 
						|
fi
 |