Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm 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 From: ericblake AT comcast DOT net (Eric Blake) To: L Anderson , cygwin AT cygwin DOT com Subject: Re: Programatically finding value of "cygdrive" prefix Date: Wed, 10 Aug 2005 23:39:55 +0000 Message-Id: <081020052339.9968.42FA904B000A1356000026F022007348300A050E040D0C079D0A@comcast.net> X-Authenticated-Sender: ZXJpY2JsYWtlQGNvbWNhc3QubmV0 > mount -p | sed -nr '2s/([^ ].*) +\S+ +\S+/\1/p' For readability, what about something like: $ mount -m | sed -ne 's/.*cygdrive[^"]*"\([^"]*\)"$/\1/p' This is tolerant of spaces, and works even if other mountpoints include the phrase cygdrive, since mount -m outputs --change-cygdrive-prefix outside of quotes but directories in quotes, and relies on the fact that the mountpoint won't have an embedded " (thanks to Windows)... -- Eric Blake -- 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/