mirror of https://github.com/jumpserver/jumpserver
11 lines
114 B
Bash
11 lines
114 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
|
||
|
trap '' SIGINT
|
||
|
base_dir=$(dirname $0)
|
||
|
|
||
|
export LANG='zh_CN.UTF-8'
|
||
|
python $base_dir/connect.py
|
||
|
|
||
|
exit
|