Files
sysconfig/nuance/gotohost.bat
luk 9742f6dab2 refactor: 脚本及配置文件命名统一用 _ 分隔
将 .sh/.bat 脚本与 .js/.plist/.Dockerfile 等文件中以 - 分隔的文件名
改为 _ 分隔,dcloud-renew 目录改为 dcloud、script_nuance 目录改为
nuance,并同步更新脚本内部引用与 README 路径。

Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com>
2026-08-25 15:11:50 +08:00

46 lines
787 B
Batchfile

@ IF "%1" == "" GOTO EMPTY
@ IF "%1" == "home" GOTO HOME
@ IF "%1" == "office" GOTO OFFICE
@ IF "%1" == "aachen" GOTO AACHEN
@ IF "%1" == "xena" GOTO XENA
@ IF "%1" == "grid" GOTO GRID
@ IF "%1" == "menlo" GOTO MENLO
:UNKNOWN
@ echo Unknown target!
@ ssh -C -X %1
@ GOTO END
:EMPTY
@ echo Empty target!
@ echo Usage: gotohost [TARGET]
@ echo TARGET = home, aachen, xena, grid, menlo
@ echo Example: gotohost grid
@ GOTO END
:HOME
@ ssh -C -X Administrator@nil.sytes.net
@ GOTO END
:OFFICE
@ ssh -C -X leiqin@leiqin.eu.scansoft.com
@ GOTO END
:AACHEN
@ ssh -C -X leiqin@ac-green.eu.scansoft.com
@ GOTO END
:XENA
@ ssh -C -X llu@xena.speechworks.com
@ GOTO END
:GRID
@ ssh -C -X llu@grid-cnh8.grid.nuance.com
@ GOTO END
:MENLO
@ ssh -C -X lleiqin@navy.nuance.com
@GOTO END
:END