Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Date: Wed, 3 Jul 2002 06:47:41 -0700
From: Dario Alcocer <alcocer@helixdigital.com>
To: cygwin@cygwin.com
Subject: Getting /cygdrive in scripts (was Re: Useful cygwinism: "Explorer Here")
Message-ID: <20020703064741.A13551@ns.helixdigital.com>
References: <1025333888.1042.ezmlm@cygwin.com> <3D22AC4D.24267EDC@x-ray.at>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5.1i
In-Reply-To: <3D22AC4D.24267EDC@x-ray.at>; from rurban@x-ray.at on Wed, Jul 03, 2002 at 07:48:29AM +0000

On Wed, Jul 03, 2002 at 07:48:29AM +0000, Reini Urban wrote:
> > Betreff: Re: Useful cygwinism: "Explorer Here"
> > Datum: Fri, 28 Jun 2002 20:07:14 +0200
> > Von: "Gerrit P. Haase" <freeweb@nyckelpiga.de>
> > An: cygwin@cygwin.com
> > 
> > Bernard schrieb:
> > 
> > > You can change the /cygdrive prefix, but I don't recommend it.
> > 
> > Why?
> > 
> > Gerrit
> > --
> > =^..^=
> 
> Many smaller tools just dumbly expect the /cygdrive prefix.
> For example the latest ilisp packages for emacs and xemacs.
> 
> cygprefix=`mount --show-cygdrive-prefix | head -n2|tail -n1|cut -f1 -d'
> '` 
> is just too costly.

I'm not in front of my Cygwin shell, but wouldn't the following be
better?

    cygprefix=`mount --show-cygdrive-prefix | awk 'NR==2 {print $1}'`

You command line is creating and destroying 4 processes, as opposed to
the above, which only uses two.

-- 
Dario Alcocer -- Sr. Software Developer, Helix Digital Inc.
alcocer@helixdigital.com -- http://www.helixdigital.com

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

