#!/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 workspace/ipx_ssh && echo -e "${GREEN}IPX mounted.$NC" ;; *) echo -e "${RED}Error:$NC Unknown Server" ;; esac fi