How to echo “2” (no quotes) to a file, from a batch script?

后端 未结 11 1358
孤街浪徒
孤街浪徒 2020-12-02 22:13

How do I echo the number 2 into a file, from a batch script?

This doesn\'t work:

Echo 2>> file.txt

because 2&g

11条回答
  •  自闭症患者
    2020-12-02 22:26

    Or you can use the delayed expansion

    setlocal EnableDelayedExpansion
    set "var=2"
    echo(!var!>> file.txt
    

提交回复
热议问题