我需要使用批处理文件传递命令参数。我该怎么做?我设置了一个小程序,但我不知道如何获取命令参数..或者真的如何制作命令。
@echo OFF
title Name pl0x
color 0a
:start
set INPUT=
set /P INPUT= %=%
IF "%INPUT%"=="/mynameis" (
goto :init
) ELSE (
goto :start
)
:init
Pause&Exit
REM Here, I'd print the name, like this: echo.Hello, %name%
REM I just don't have the variable. And I don't know how to set it.