run two commands in one windows cmd line, one command is SET command

前端 未结 2 1038
夕颜
夕颜 2021-01-02 17:36

[purpose]

This simple command sequence runs expected in the Windows\' CMD shell:

dir & echo hello

will list the files and direct

2条回答
  •  天命终不由人
    2021-01-02 18:26

    Your result is due to the fact that %name% is expanded during the parsing phase, and the entire line is parsed at once, prior to the value being set.

    You can get the current value on the same line as the set command in one of two ways.

    1) use CALL to cause ECHO %NAME% to be parsed a 2nd time:

    set name=value&call echo %^name%
    

    I put a ^ between the percents just in case name was already defined before the line is executed. Without the caret, you would get the old value.

    Note: your original line had a space before the &, this space would be included in the value of the variable. You can prevent the extra space by using quotes: set "name=value" &...

    2) use delayed expansion to get the value at execution time instead of at parse time. Most environments do not have delayed expansion enabled by default. You can enable delayed expansion on the command line by using the appropriate CMD.EXE option.

    cmd /v:on
    set "name=value" & echo !name!
    

    Delayed expansion certainly can be used on the command line, but it is more frequently used within a batch file. SETLOCAL is used to enable delayed expansion within a batch file (it does not work from the command line)

    setlocal enableDelayedExpansion
    set "name=value" & echo !name!
    

提交回复
热议问题