diff --git a/script/myssh b/script/myssh index b2434f0..1231653 100755 --- a/script/myssh +++ b/script/myssh @@ -3,12 +3,12 @@ [ -z $SQL_PROXY_HOST ] && SQL_PROXY_HOST="localhost" CONNECTION_CACHE="$HOME/.cache/sqlproxy_$SQL_PROXY_HOST" -HELP="Usage: myssh [ls|connect] -SUBCOMMANDS: - ls: list available database hosts - connect: connect to a database host - disconnect: Quit existing ssh master session - +HELP="Usage: myssh [ls|connect]\n +SUBCOMMANDS:\n + ls: list available database hosts\n + connect: connect to a database host\n + disconnect: Quit existing ssh master session\n +\n SYNTAX connect host [-u user] [-p password] [-c client] " @@ -95,5 +95,5 @@ case $MAIN_OPTION in disconnect) disconnect;; *) - echo -e "Usage: myssh [ls|connect]\n\n";; + echo -e $HELP;; esac