摘要:
(1) case语句:选择结构 case SWITCH in value1) statement ... ;; //双分号结尾。 value2) statement ... ;; *) statement ... ;; esac //esac结尾。 (2) shift参数说明: 执行shift命令后,位置变量($1~$9)中的命令行参数会依次向左传递。 例: #!/bin/bash # ... 阅读全文
摘要:
●强制用Wscript.exe执行 SET Wshell=CreateObject("Wscript.Shell") if lcase(right(Wscript.fullName,11)) = "cscript.exe" then Wshell.run "wscript.exe //nologo 阅读全文