X-Recipient: archive-cygwin@delorie.com
X-SWARE-Spam-Status: No, hits=-4.4 required=5.0	tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_HI,TW_CG,TW_YG,T_RP_MATCHES_RCVD
X-Spam-Check-By: sourceware.org
In-Reply-To: <20110210203553.GB32475@ednor.casa.cgf.cx>
References: <4D52A7DD.7080208@bonhard.uklinux.net> <4D52B4D3.2040102@sbcglobal.net> <20110209163858.GJ16194@calimero.vinschen.de> <0105D5C1E0353146B1B222348B0411A209C0F073A4@NIHMLBX02.nih.gov> <4D541D35.3020901@redhat.com> <OF248AECF7.EB384F53-ON85257833.006FBBCF-85257833.007007D2@lnotes-gw.ent.nwie.net> <20110210203553.GB32475@ednor.casa.cgf.cx>
To: cygwin@cygwin.com
MIME-Version: 1.0
Subject: Re: Accessing folders elsewhere than C:\cygwin
X-KeepSent: 827A9B42:31F18336-85257833:0074A228; type=4; name=$KeepSent
Message-ID: <OF827A9B42.31F18336-ON85257833.0074A228-85257833.0074D338@lnotes-gw.ent.nwie.net>
From: RISINGP1@nationwide.com
Date: Thu, 10 Feb 2011 16:16:01 -0500
Content-Type: text/plain; charset="US-ASCII"
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

cygwin-owner wrote on 02/10/2011 03:35:53 PM:

> 
> On Thu, Feb 10, 2011 at 03:23:38PM -0500, RISINGP1 wrote:
> >Eric wrote on 02/10/2011 12:15:33 PM:
> >
> >> On 02/10/2011 10:13 AM, Buchbinder, Barry (NIH/NIAID) [E] wrote:
> >> > Might the ability to identify cygwin's root be a good
> >> > thing to add to cygpath?
> >> 
> >> And what's so hard about 'cygpath -w /'?
> >> 
> >> > Under "System information", one could have an option
> >> > 
> >> >   -R, --root    output cygwin root directory
> >> > 
> >> > where
> >> > 
> >> > $ cygpath -Rw
> >> > C:\cygwin
> >> 
> >> Trading / for -R doesn't justify the bloat and burning another short
> >> option character, in my opinion.
> >
> >If you need it ofetn enough, here is a simple script for displaying the 

> >cygwin root:
> >
> >case $1 in
> >    -w)
> >        mount | grep " / " | cut -d" " -f1 | sed 's:/:\\:g'
> >        ;;
> >    -u)
> >        DRIVE=$(mount | grep " / " | cut -d":" -f1):
> >        echo $(mount | grep "^$DRIVE " | \
> >        cut -d" " -f3)$(mount | grep " / " | cut -d" " -f1) | \
> >        sed 's/'$DRIVE'//'
> >        ;;
> >    *)
> >        echo "Please specify -w (Windows) or -u (Unix)"
> >        ;;
> >esac
> 
> Why would we need a simple script to display the cygwin root when
> "cygpath -w /" works fine?
> 
> cgf
> 

OK.  You are right (somehow I missed the "cygpath -w /" mention in the 
thread - oops).

Change

        -w)
               mount | grep " / " | cut -d" " -f1 | sed 's:/:\\:g'
               ;;

to

        -w)
               cygpath -w /
               ;;

But "cygpath -u /" will give "/" as an answer.  The script will give (for 
me) "/cygdrive/c/cygwin".

I was merely trying to offer an alternative to Barry's request for the 
"-R" option on cygpath.  Specifically, it answers this part of his 
request:

> $ cygpath -Ru
> /cygdrive/c/cygwin
> 
> or, if the cygdrive prefix has been changed to a simple /,
> 
> $ cygpath -Ru
> /c/cygwin

- Phil

--
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

