myssh: Print help text

This commit is contained in:
Kevin Baensch 2022-11-18 11:56:29 +01:00
parent 7240d0fcea
commit f6e126dfcc

View file

@ -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