mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-09-21 22:11:38 +08:00
* dbeaver/pro#4066 run cli client from launcher, add cli server to CB * dbeaver/pro#4066 special scripts to execute cli commands --------- Co-authored-by: Serge Rider <serge@jkiss.org> Co-authored-by: kseniaguzeeva <112612526+kseniaguzeeva@users.noreply.github.com>
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeo pipefail
|
|
CLI_OPTS="$@"
|
|
if [[ $# -eq 0 ]] ;
|
|
then
|
|
CLI_OPTS='-help'
|
|
fi
|
|
source run-server.sh |