Dummy command in windows cmd

前端 未结 4 1474
粉色の甜心
粉色の甜心 2021-01-17 10:49

In linux we have a makefile:

$(foreach A,a b,echo $(A) &&) true

It works and echos

a
b

Now we wan

4条回答
  •  逝去的感伤
    2021-01-17 11:36

    The call command without any argument does nothing and has no collateral effect as rem has.

    Example:

    echo Wait for it...
    call
    echo Nothing happened!
    

提交回复
热议问题