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

后端 未结 11 1393
孤街浪徒
孤街浪徒 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:39

    Based on this answer, if anyone is wondering how to do this:

    echo "command1 && command2" > file.txt
    

    with no qoutes in file.txt then you do it like this:

    echo command1 ^&^& command2 > file.txt
    

    Tested on Windows Server 2003.

提交回复
热议问题