refactor: 脚本及配置文件命名统一用 _ 分隔

将 .sh/.bat 脚本与 .js/.plist/.Dockerfile 等文件中以 - 分隔的文件名
改为 _ 分隔,dcloud-renew 目录改为 dcloud、script_nuance 目录改为
nuance,并同步更新脚本内部引用与 README 路径。

Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com>
This commit is contained in:
luk
2026-08-25 15:11:50 +08:00
parent 42ef5b87a6
commit 9742f6dab2
156 changed files with 15 additions and 101 deletions

48
nuance/cvsroot.bat Normal file
View File

@@ -0,0 +1,48 @@
@ IF "%1" == "" GOTO EMPTY
@ IF "%1" == "p" GOTO PRODUCT
@ IF "%1" == "s" GOTO SOLUTION
@ IF "%1" == "a" GOTO ASR
@ IF "%1" == "o" GOTO OFFICE
@ IF "%1" == "h" GOTO HOME
:UNKNOWN
@ echo Unknown option! Nothing was configured.
@ GOTO USAGE
:EMPTY
@ echo Empty option! Nothing was configured.
@ GOTO USAGE
:USAGE
@ echo Usage: cvsroot [psaoh]
@ echo p, s, a for Product/Solutions/AMR
@ echo o, h for my Office/Home
@ echo Example: cvsroot o
@ GOTO END
:PRODUCT
@ set CVSROOT=:pserver:llu@cvshost.speechworks.com:/swicvs/product
@ echo CVSROOT of Product was successfully configured.
@ GOTO END
:SOLUTION
@ set CVSROOT=:pserver:llu@cvshost.speechworks.com:/swicvs/solutions
@ echo CVSROOT of Solutions was successfully configured.
@ GOTO END
:ASR
@ set CVSROOT=:pserver:llu@wa-csr-cvs.wa.scansoft.com:/res/lvcsr/code/cvsroot
@ echo CVSROOT of AMR was successfully configured.
@ GOTO END
:OFFICE
@ set CVSROOT=:ext:llu@ac-llu.nuance.com:/cygdrive/c/Home/cvsrep
@ echo CVSROOT of Office was successfully configured.
@ GOTO END
:HOME
@ set CVSROOT=:ext:llu@nil.sytes.net:/cygdrive/r/cvsrep
@ echo CVSROOT of Home was successfully configured.
@GOTO END
:END