8 lines
		
	
	
		
			139 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			139 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if (which mc &> /dev/null); then
 | 
						|
  if [ "$TERM" = "rxvt-unicode" ]; then
 | 
						|
    alias mc="TERM=rxvt-unicode-256color mc"
 | 
						|
  fi
 | 
						|
fi
 |