我需要帮助的是用户输入字符串:commandLine("Dir")
然后它将从commandLine("Dir")
获取Dir并将其变为变量
示例:
C:\> program.bat commandLine("Dir")
program.bat:
echo the command is: Dir
pause
答案 0 :(得分:1)
试试这个:
echo off
set str=%1
set str=%str:CommandLine("=%
set str=%str:")=%
echo on
echo the command is: %str%