improve remote_connection.sh, now it's possible to put the protocol no matter where in the title.
This commit is contained in:
parent
0a4b2a5fcc
commit
2e7d928791
1 changed files with 38 additions and 37 deletions
|
@ -18,10 +18,10 @@ default_ssh_port="22"
|
||||||
default_rsp_port="3389"
|
default_rsp_port="3389"
|
||||||
default_vnc_port="5900"
|
default_vnc_port="5900"
|
||||||
|
|
||||||
Version="2.0.0"
|
Version="2.0.1"
|
||||||
|
|
||||||
Help_message="
|
Usage="
|
||||||
$(basename $0) PROTOCOL [OPTION] [OPTION=VALUE]
|
$(basename $0) [OPTION] [OPTION=VALUE] PROTOCOL
|
||||||
|
|
||||||
script which permit to launch a remote connection protocol.
|
script which permit to launch a remote connection protocol.
|
||||||
|
|
||||||
|
@ -56,26 +56,14 @@ start_rsp() {
|
||||||
port="${default_rsp_port}"
|
port="${default_rsp_port}"
|
||||||
fi
|
fi
|
||||||
hostname="${hostname}:${port}"
|
hostname="${hostname}:${port}"
|
||||||
echo "start rsp"
|
echo "start rsp with user=${user} port=${port} hostname=${hostname}"
|
||||||
xfreerdp /v:"${hostname}" /u:"${user}" /dynamic-resolution
|
xfreerdp /v:"${hostname}" /u:"${user}" /dynamic-resolution
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
"ssh")
|
|
||||||
protocol="ssh"
|
|
||||||
;;
|
|
||||||
"rsp")
|
|
||||||
protocol="rsp"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "protocol $1 uknown" >&2
|
|
||||||
exit 1
|
|
||||||
esac
|
|
||||||
|
|
||||||
# looking for double parametters.
|
# looking for double parametters.
|
||||||
|
|
||||||
for (( arg=2; arg<$#; arg++)); do
|
for (( arg=1; arg<$#; arg++)); do
|
||||||
value="$((arg+1))"
|
value="$((arg+1))"
|
||||||
if [ "${!arg}" == "-u" ]
|
if [ "${!arg}" == "-u" ]
|
||||||
then
|
then
|
||||||
|
@ -93,24 +81,36 @@ done
|
||||||
# looking for all parametter alone
|
# looking for all parametter alone
|
||||||
|
|
||||||
for i in "$@"; do
|
for i in "$@"; do
|
||||||
if [ "${i%=*}" == "--user" ]
|
case "$i" in
|
||||||
then
|
"ssh")
|
||||||
user="${i#*=}"
|
protocol="ssh"
|
||||||
elif [ "${i%=*}" == "--port" ]
|
;;
|
||||||
then
|
"rsp")
|
||||||
port="${i#*=}"
|
protocol="rsp"
|
||||||
elif [ "${i#*=}" == "--hostname" ]
|
;;
|
||||||
then
|
"--version" | "-v")
|
||||||
hostname="${i#*=}"
|
echo "$(basename $0) v.${Version}"
|
||||||
elif [ "${i}" == "--version" ] || [ "${i}" == "-v" ]
|
exit 0
|
||||||
then
|
;;
|
||||||
echo "$(basename $0) v.${Version}"
|
"--help" | "-h")
|
||||||
exit 0
|
echo "${Usage}"
|
||||||
elif [ "${i}" == "--help" ] || [ "${i}" == "-h" ]
|
exit 0
|
||||||
then
|
;;
|
||||||
echo "$Help_message"
|
esac
|
||||||
exit 0
|
done
|
||||||
fi
|
|
||||||
|
for i in "$@"; do
|
||||||
|
case "${i%=*}" in
|
||||||
|
"--user")
|
||||||
|
user="${i#*=}"
|
||||||
|
;;
|
||||||
|
"--port")
|
||||||
|
port="${i#*=}"
|
||||||
|
;;
|
||||||
|
"--hostname")
|
||||||
|
hostname="${i#*=}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "${user}" == "" ]
|
if [ "${user}" == "" ]
|
||||||
|
@ -132,8 +132,9 @@ case "${protocol}" in
|
||||||
start_rsp
|
start_rsp
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "CRITICAL protocol ${protocol} uknown" >&2
|
echo "protocol ${protocol} uknown" >&2
|
||||||
exit 1
|
echo ${Usage}
|
||||||
|
exit
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue