X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=BAYES_00,J_CHICKENPOX_51,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: sourceware.org Message-ID: <496E7E4F.6060706@gmail.com> Date: Wed, 14 Jan 2009 19:07:43 -0500 From: Andy Koppe User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.19) Gecko/20081209 Thunderbird/2.0.0.19 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: First Pass at mintty documentation; etc. References: <496A5EDE DOT 9010204 AT veritech DOT com> <496A7038 DOT 402 AT gmail DOT com> <496B7C25 DOT 3090705 AT veritech DOT com> <496E528D DOT 1090801 AT gmail DOT com> In-Reply-To: <496E528D.1090801@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 Andy Koppe wrote: > Lee D. Rothstein wrote: >> I do lots of bash scripting including Windows/DOS commands, and I >> can think of only one character cell app that ever gave me any >> trouble from rxvt or xterm (whatever that app is -- I think a >> Resource Kit app), I found a work-around and never needed it >> again. > > 'net' is a troublesome command that's been mentioned, although it seems > to be ok for basic stuff. But I guess there might be still be a few DOS > fullscreen apps around. Turbo Pascal perhaps? But yeah, I'd sooner > implement tabs than worry about DOS apps. ;) "full screen" or "DOS" is a red herring. Any program that does something like the following, if compiled as a native program, won't work in rxvt (or MinTTY, or cygwin/cmd-shell-with-CYGWIN=tty): #include main() { int c; while ((c = getc(stdin)) != EOF) fputc(c, stdout); } The thing is, THIS program works as part of a pipeline even when compiled as a native program -- but it breaks if you try to use it interactively within rxvt/MinTTY/etc. A cygwin-compiled version works in all cases. -- Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/