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

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

    Little-known feature: The redirection operator can go anywhere on the line.

    >>file.txt echo 2
    

提交回复
热议问题