Jul 19, 2004 #1 DickEp Programmer Sep 5, 2001 26 US How can I send text to the cmd.exe (DOS Box emulator)? Thanks
Jul 19, 2004 #2 Chromebender Programmer Jul 16, 2004 4 US You want to send text (as if the user was typing at the keyboard) to an instance of cmd.exe that is already running? Upvote 0 Downvote
You want to send text (as if the user was typing at the keyboard) to an instance of cmd.exe that is already running?
Jul 22, 2004 #3 mseth Programmer Aug 2, 2003 154 US You can do this with pipes for redirecting cmd.exe's STDIN and you can also use pipes to read the STDOUT and/or STDERR as well. Upvote 0 Downvote
You can do this with pipes for redirecting cmd.exe's STDIN and you can also use pipes to read the STDOUT and/or STDERR as well.