Hi ALL,
I am using hstart to hide command prompt window when hg command runs. I want to store stdout/stderr of hg commands in a file but it is not working..
hg update >log.txt 2>&1
This works but when I use it with hstart like
hstart "hg update"> log.txt 2>&1""
I get an empty log file.I tried changing sequence of 2>&1 befor log.txt but no success
Any ideas??????