17 lines
		
	
	
		
			243 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			243 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
wx-ssh(){
 | 
						|
    wx-login
 | 
						|
 | 
						|
    case $1 in
 | 
						|
        keys)
 | 
						|
            wx-ssh-keys $2 $3
 | 
						|
            ;;
 | 
						|
        config)
 | 
						|
            wx-ssh-config $2
 | 
						|
            ;;
 | 
						|
        *)
 | 
						|
            wx-header "SSH"
 | 
						|
            wx-stop
 | 
						|
            ;;
 | 
						|
    esac
 | 
						|
}
 |