First post, by Kahenraz
- Rank
- l33t
I have a bat file that has a large text output when it runs a program. If I run that program directly, I can redirect the output to a file with '>' or pipe it to MORE. However, I can't redirect or pipe the output when executing the bat file.
file.bat > a.log
file.bat | more
Neither of these work. Is it possible to make this work as expected?