X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_55,SPF_PASS X-Spam-Check-By: sourceware.org Message-ID: <4ABA9534.9080203@gmail.com> Date: Wed, 23 Sep 2009 22:37:56 +0100 From: Dave Korn User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Using bash(cygwin) inside C# program References: <001e01ca3c91$70f661c0$52e32540$@com> In-Reply-To: <001e01ca3c91$70f661c0$52e32540$@com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com amir knippel wrote: > i created a process that runs bash and redirect stdin,stout and std error > but I can’t get tty to work attached is a sample code that starts bash > process and redirect the input/output. > the problem is that i don't have tty device. if i try to run tty command or > stty command i receive error response > tty - not a tty > stty - Inappropriate ioctl for device > i need to run cygwin and disable echo with stty -echo but to do this i need > a tty device. how can i create a cygwin bash shell with tty device and > redirect the stdin, out and error ? Why exactly do you think you need to run stty and set the tty operating parameters, when the bash process is quite plainly *not* connected to a tty, it is connected to your C# application? It's your application that is in charge of I/O - if it doesn't want echo, all it has to do is discard the stuff it reads from the process' stdout instead of displaying it, in your OutDataReceived/ErrorDataReceived handlers. > bashProcess.StartInfo.EnvironmentVariables["CYGWIN"] = "tty"; Don't do this. Win32 native processes don't understand Cygwin's tty emulation, which is based on pipes. cheers, DaveK -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple