How do I echo the number 2 into a file, from a batch script?
This doesn't work:
Echo 2>> file.txt
because 2>> is a special command. :(
2>>
Little-known feature: The redirection operator can go anywhere on the line.
>>file.txt echo 2
2.1m questions
2.1m answers
60 comments
57.0k users