我有一个Windows .bat文件,我想接受用户输入,然后使用输入的结果作为额外命令调用的一部分。

例如,我想从用户那里接受一个进程ID,然后针对这个ID运行jstack,将jstack调用的结果放到一个文件中。然而,当我尝试这样做时,它不起作用。

以下是我的示例bat文件内容:

@echo off
set /p id=Enter ID: 
echo %id%
jstack > jstack.txt

下面是在jstack.txt中显示的内容:

Enter ID: Terminate batch job (Y/N)? 

当前回答

我有一个小cmd我使用时,准备pc客户端:它调用用户输入,并重命名pc。

@ECHO "remember to run this as admin."
@ECHO OFF
SET /P _inputname= Please enter an computername:
@ECHO Du intastede "%_inputname%"
@ECHO "The pc will restart after this"
pause
@ECHO OFF
wmic computersystem where name="%COMPUTERNAME%" call rename name="%_inputname%"

shutdown -r -f

其他回答

语法如下:set /p variable=[string]

查看http://commandwindows.com/batch.htm或http://www.robvanderwoude.com/userinput.php,以更深入地了解不同版本的Windows操作系统批处理文件的用户输入。

一旦设置了变量,就可以按照以下方式使用它。

@echo off
set /p UserInputPath=What Directory would you like?
cd C:\%UserInputPath%

注意%VariableName%语法

变量周围的美元符号在我的Vista机器上不起作用,但是百分号可以。 还要注意,“set”行上的尾随空格将出现在提示符和用户输入之间。

我有一个小cmd我使用时,准备pc客户端:它调用用户输入,并重命名pc。

@ECHO "remember to run this as admin."
@ECHO OFF
SET /P _inputname= Please enter an computername:
@ECHO Du intastede "%_inputname%"
@ECHO "The pc will restart after this"
pause
@ECHO OFF
wmic computersystem where name="%COMPUTERNAME%" call rename name="%_inputname%"

shutdown -r -f
@echo off
set /p input="Write something, it will be used in the command "echo""
echo %input%
pause

如果我能得到你想要的,就没问题。您也可以在其他命令中使用%input%。

@echo off
echo Write something, it will be used in the command "echo"
set /p input=""
cls
echo %input%
pause 
set /p choice= "Please Select one of the above options :" 
echo '%choice%'

=后面的空格很重要。