|
From: Earnie B. <ea...@us...> - 2009-01-09 20:02:50
|
Quoting John Ratliff <web...@te...>: > > Here's the command I tried: > > start /LOW oggenc2.exe -Q -b 96 -o audio.ogg audio.pcm > Try: start //LOW oggenc2.exe -Q -b 96 -o audio.oog audio.pcm The /LOW is will be converted to a file specification unless you use the double // notation where MSYS will remove one / before sending it to the process. The /bin/start command is a script that executes ``cmd //c start "$@"'' for convenience. You can even do ``start cmd'' to open a windows console with the existing environment. Earnie |