9 lines
		
	
	
		
			157 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			157 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								# something or other about android and tmux using PREFIX
							 | 
						||
| 
								 | 
							
								#: "${PREFIX:=''}"
							 | 
						||
| 
								 | 
							
								my_root=""
							 | 
						||
| 
								 | 
							
								if [ -z "${PREFIX-}" ]; then
							 | 
						||
| 
								 | 
							
								  my_root=""
							 | 
						||
| 
								 | 
							
								else
							 | 
						||
| 
								 | 
							
								  my_root="$PREFIX"
							 | 
						||
| 
								 | 
							
								fi
							 |