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, 4 Dec 2002 11:36:51 +0200
Message-Id: <200212040936.gB49apif006548@beta.mvs.co.il>
X-Authentication-Warning: beta.mvs.co.il: ehud set sender to ehud@unix.mvs.co.il using -f
From: "Ehud Karni" <ehud@unix.mvs.co.il>
To: qumqam@yahoo.com
Cc: cygwin@cygwin.com
Subject: Re: Bash puzzle: Spaces, environment variables and tab completion
In-reply-to: <20021204060952.8081.qmail@web13602.mail.yahoo.com> (message from
	James Shaw on Tue, 3 Dec 2002 22:09:52 -0800 (PST))
Organization: Mivtach-Simon Insurance agencies
Reply-to: ehud@unix.mvs.co.il
References:  <20021204060952.8081.qmail@web13602.mail.yahoo.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-8
Content-Transfer-Encoding: 7bit

> 
> What I want to do is define an environment
> variable so I can easily cd or ls.  E.g.
> % PF="/cygdrive/c/Program Files"
> % cd $PF
> % ls $PF/Games
> % ls $PF/G<tab completion!>
> 
> The above is close, I can
> % cd "$PF"; ls "$PF"/Games; and even
> ls "$PF"/G<tab> however, the quotes are clunky.

That's the bash way. You can get omit the enclosing quotes if you
change the IFS environment variable like this IFS="".
Note that this may harm execution of your commands/scripts. Read
the bash man page for more information.

My (bypass) solution to your problem is to make a symlink to the
desired directory without spaces in it and use that file name.
e.g. ln -s "/cygdrive/c/Program Files" ~/PF

The advantage of this "bypass" is that you can use the symlink in
scripts without defining the environment variable for each one.

Ehud.


-- 
 Ehud Karni           Tel: +972-3-7966-561  /"\
 Mivtach - Simon      Fax: +972-3-7966-667  \ /  ASCII Ribbon Campaign
 Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail
 http://www.mvs.co.il  FAX:  1-815-5509341  / \
 mailto:ehud@unix.mvs.co.il                  Better  Safe  Than  Sorry

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

