Jul 19, 2004 #1 DickEp Programmer Joined Sep 5, 2001 Messages 26 Location US How can I send text to the cmd.exe (DOS Box emulator)? Thanks
Jul 19, 2004 #2 Chromebender Programmer Joined Jul 16, 2004 Messages 4 Location 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 Joined Aug 2, 2003 Messages 154 Location 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.