0

我需要帮助的事情是如果用户键入字符串:commandLine("Dir") 那么它将从 Dir 获取commandLine("Dir")并将其转换为变量

例子:

C:\> program.bat commandLine("Dir")

program.bat:

echo the command is: Dir

pause
4

1 回答 1

1

试试这个:

echo off
set str=%1
set str=%str:CommandLine("=%
set str=%str:")=%
echo on
echo the command is: %str%
于 2013-10-04T23:41:58.567 回答