摘要: (1) case语句:选择结构 case SWITCH in value1) statement ... ;; //双分号结尾。 value2) statement ... ;; *) statement ... ;; esac //esac结尾。 (2) shift参数说明: 执行shift命令后,位置变量($1~$9)中的命令行参数会依次向左传递。 例: #!/bin/bash # ... 阅读全文
posted @ 2018-07-26 23:34 山的那一边 阅读(332) 评论(0) 推荐(0) 编辑
摘要: ●强制用Wscript.exe执行 SET Wshell=CreateObject("Wscript.Shell") if lcase(right(Wscript.fullName,11)) = "cscript.exe" then Wshell.run "wscript.exe //nologo 阅读全文
posted @ 2018-07-26 19:34 山的那一边 阅读(4112) 评论(0) 推荐(1) 编辑