#!/bin/sh if [ "$1" = "" ] || [ "$1" = "-h" ]; then echo -e "${blue}Usage:$NC mount-ftp "; echo -e "${green}Servers:$NC ipx"; exit 1 else case $1 in ipx) sshfs web0@nevera: -p 22222 ${HOME}/workspace/ipx_ssh && echo -e "${GREEN}IPX mounted.$NC" ;; wf) sshfs stem47@stem47.loomes.net: -p 22 ${HOME}/workspace/wf_ssh && echo -e "${GREEN}WF mounted.$NC" ;; *) echo -e "${RED}Error:$NC Unknown Server" ;; esac fi