双击批量参数
我想创建一个批处理脚本并通过双击运行它, 但我使用的命令需要一个参数
示例:bat 文件打开提示并询问参数,然后它创建一个以该参数作为名称的目录 (实际上是给 plink 的一个参数,但示例类似)
我该怎么做?
我知道如何通过命令行获取参数:
@echo off
mkdir %1
但是如何通过双击来获取参数?
i would like to create a batch script and run it via double click,
but the commands that i use, need a parameter
example: the bat file open the prompt and ask for a parameter, then it create a diredtory with that parameter as name
(in reality is a parameter to give to plink, but the example is similar)
How can i do that?
i know how to get a parameter via command line:
@echo off
mkdir %1
but how to do that via double click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能会有所帮助。描述如何从批处理文件中提示历来不同版本的 Windows。
http://www.robvanderwoude.com/userinput.php
This may help. Describes how to prompt from batch file for the various versions of windows through the ages.
http://www.robvanderwoude.com/userinput.php
这是您所追求的基本形式:
Here is the basic form of what you are after:
您可以单击摩尔斯电码形式的参数。 Windows 将正确解释它。不过,请务必把握好时机。
You can click the parameter(s) in morse code. It will then be interpreted by Windows correctly. Make sure to get your timing right though.