双击批量参数

发布于 2024-11-25 13:06:13 字数 220 浏览 2 评论 0原文

我想创建一个批处理脚本并通过双击运行它, 但我使用的命令需要一个参数

示例: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无名指的心愿 2024-12-02 13:06:13

这可能会有所帮助。描述如何从批处理文件中提示历来不同版本的 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

守护在此方 2024-12-02 13:06:13

这是您所追求的基本形式:

@ECHO OFF

SET /P FOLDER=Enter a folder name: 
MKDIR "%1"

Here is the basic form of what you are after:

@ECHO OFF

SET /P FOLDER=Enter a folder name: 
MKDIR "%1"
烟酒忠诚 2024-12-02 13:06:13

您可以单击摩尔斯电码形式的参数。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文