mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-12-24 04:52:39 +00:00
11 lines
112 B
Bash
Executable File
11 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
|
|
trap '' SIGINT
|
|
base_dir=$(dirname $0)
|
|
|
|
export LANG='zh_CN.UTF-8'
|
|
python $base_dir/connect.py
|
|
|
|
exit
|