On Saturday 18 January 2003 02:35 pm, Dan Kegel wrote:
Greg Turner wrote:
I am trying write scripts to mangle the output of MIDL. After MIDL runs, I need to do a tiny amount of post-processing using UNIX apps (convert from CRLF, for starters).
I just tried making a .bat file containing
@echo off echo hi echo there
and running it from unix with
wcmd /c foo.bat > log
Sure enough, log contained just the two lines hi there
So I think you can already do that which you requested.
indeed, you are right. perhaps i only tried "wcmd -- -c". silly me.