I've got the following Perforce command in a bat file:
p4 -c myworkspace sync //path/...
and I want to re-direct the output to a file. I tried:
p4 -c myworkspace sync //path/... >> file.txt
but the output is show in the command line and doesn't appear in the file. How to solve this?
Is there a parameter I can send to perforce to write the output to a file or can I do this directly from the bat?