标签: windows batch-file
我有一个必须处理2个用户输入的批处理文件
SET /p LeftInput=Enter First Photo Number: SET /A PhotoLeft=LeftInput SET /p RightInput=Enter Second Photo Number: SET /A PhotoRight=RightInput
我可以得到第一个参数!PhotoLeft!但是,我无法得到第二个参数!PhotoRight! (它总是无效)
如何实现这个目标?
谢谢。