From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23311 invoked by alias); 29 Sep 2003 02:21:31 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 23100 invoked from network); 29 Sep 2003 02:21:29 -0000 Received: from unknown (HELO lakemtao03.cox.net) (68.1.17.242) by sources.redhat.com with SMTP; 29 Sep 2003 02:21:29 -0000 Received: from white ([68.9.191.65]) by lakemtao03.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20030929022128.UPZB14673.lakemtao03.cox.net@white> for ; Sun, 28 Sep 2003 22:21:28 -0400 Received: from bob by white with local (Exim 3.35 #1 (Debian)) id 1A3nfE-0002pJ-00 for ; Sun, 28 Sep 2003 22:21:28 -0400 Date: Mon, 29 Sep 2003 02:25:00 -0000 From: Bob Rossi To: gdb@sources.redhat.com Subject: Finding absolute path from relative. Message-ID: <20030929022128.GB10687@white> Mail-Followup-To: gdb@sources.redhat.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i X-SW-Source: 2003-09/txt/msg00358.txt.bz2 Hi, I am thinking about the algorithm required to find the absolute path to a source file given the relative path and the output from 'show dir'. Is it really as easy as this, for I in 'show dir' # for each directory in show dir if $I/relative_path exists break; # Found absolute path. Or does it get more complex and obfuscated? Bob Rossi