From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17912 invoked by alias); 22 Jul 2002 03:15:58 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 17901 invoked from network); 22 Jul 2002 03:15:57 -0000 Received: from unknown (HELO rai.iitr.ernet.in) (210.212.89.4) by sources.redhat.com with SMTP; 22 Jul 2002 03:15:57 -0000 Received: from localhost (email@localhost) by rai.iitr.ernet.in (8.11.2/8.11.2) with ESMTP id g6M3NCo01302; Mon, 22 Jul 2002 08:53:12 +0530 X-Authentication-Warning: rai.iitr.ernet.in: email owned process doing -bs Date: Sun, 21 Jul 2002 20:15:00 -0000 From: "H.S.Rai" X-X-Sender: To: gcc gnu cc: danny Subject: Re: directories for newbies In-Reply-To: <3D3B5B72.B0CCF29B@3rdplanetsoftware.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2002-07/txt/msg00213.txt.bz2 Yesterday at 6:10pm -0700 danny wrote: > Does linux have a standard debugger gdb This is GNU debugger. man gdb for detail. -- H.S.Rai : ####[ Linux One Stanza Tip (LOST) ]########################### Sub : Unix to DOS conversion (#1) LOST #219 If you have vim editor installed, the following script will do Unix (text file) to DOS conversion: #!/bin/sh # Save u2d, chmod +x u2d vim -c ":set ff=dos" -c ":wq" $1 # Usage: u2d filename.txt ######################################### :