delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
DomainKey-Signature: | a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id |
:list-unsubscribe:list-subscribe:list-archive:list-post | |
:list-help:sender:mime-version:in-reply-to:references:date | |
:message-id:subject:from:to:content-type; q=dns; s=default; b=RT | |
7OOINZfIsufuYNaO7SlEfwYHW6ofUFquY5bpK/mXERocbCfOsfbiCCoBiCKHOSf7 | |
qFgsyEScOEEJrXZCPCv2qGSEuSGIFIoQ0kzfZgH4K+xCjp4QLUnwrQEjGCmvywFh | |
KscGs/pYCBg/32dPxgNguZgRWbsdicOs0m2AD6WWg= | |
DKIM-Signature: | v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id |
:list-unsubscribe:list-subscribe:list-archive:list-post | |
:list-help:sender:mime-version:in-reply-to:references:date | |
:message-id:subject:from:to:content-type; s=default; bh=QhdXKROP | |
hYFAkhE0XfpHK5fFuKo=; b=quzugizTQ2CprXIwqETU0Vc2Wy1ut7repJDR8LUQ | |
iG20QhJ6UrjLv6+IPLmkMg89URJHOL4lT5GaNuDFEP8SLx3Up+K7lHMhwMjTYipl | |
vz/IGtUbo79DyBweeHeE0MUzfdiaoHWfEjHq6Hw4VIJUk5hLEe0bhc2na2RRTD5P | |
nss= | |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Id: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
Authentication-Results: | sourceware.org; auth=none |
X-Virus-Found: | No |
X-Spam-SWARE-Status: | No, score=1.4 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 |
X-HELO: | mail-yk0-f177.google.com |
MIME-Version: | 1.0 |
X-Received: | by 10.129.87.204 with SMTP id l195mr472109ywb.23.1438821325302; Wed, 05 Aug 2015 17:35:25 -0700 (PDT) |
In-Reply-To: | <897487143.20150806031430@yandex.ru> |
References: | <announce DOT 20150803131950 DOT GA18878 AT calimero DOT vinschen DOT de> <55BFB64C DOT 1010802 AT towo DOT net> <20150803192940 DOT GA19315 AT calimero DOT vinschen DOT de> <loom DOT 20150804T094839-714 AT post DOT gmane DOT org> <895515CC-6BB7-41E7-AEA5-30FBBE071153 AT etr-usa DOT com> <87wpxac2bj DOT fsf AT Rainer DOT invalid> <20150805075435 DOT GP17917 AT calimero DOT vinschen DOT de> <1324339149 DOT 20150805194114 AT yandex DOT ru> <CAKNeuBqe_w79RBcC=iRki7kZeDQdBen85kWuPZESO0SCGaCUAQ AT mail DOT gmail DOT com> <897487143 DOT 20150806031430 AT yandex DOT ru> |
Date: | Wed, 5 Aug 2015 17:35:25 -0700 |
Message-ID: | <CAKNeuBqASXv_LC0vJC3F9bVDauQJ-1tWTT5L+to4JbGejyaXrw@mail.gmail.com> |
Subject: | Re: [ANNOUNCEMENT] Updated: Cygwin 2.2.0-1 |
From: | Nicholas Clark <nicholas DOT clark AT gmail DOT com> |
To: | cygwin AT cygwin DOT com |
X-IsSubscribed: | yes |
You're certainly right that there are nicer ways to write that script. My point with the sample script above is that I'm currently using a Windows-style HOME path, and it works fine. Chances are there are a bunch of other users out there who also use a Windows-style HOME path in messy .bat files - I just wanted to illuminate that making Windows paths illegal is likely to break a whole bunch of users' scripts, and really offers no benefit. On Wed, Aug 5, 2015 at 5:14 PM, Andrey Repin <anrdaemon AT yandex DOT ru> wrote: > Greetings, Nicholas Clark! > >> I totally agree that setting HOME to a relative-path is probably a Bad >> Idea, and can/should be undefined behavior. As for absolute paths (and >> whether they should be POSIX, Windows, or either), that's a little >> less cut and dry for me. > >> I currently use a ton of scripts of the general form: > >> -------- >> Cygwin.bat: >> @echo off > >> @pushd %~dp0 >> @set TOP=%CD% >> @popd > > This wraps into > > SET TOP=%~dp0 > > (If at all necessary to wrap it like that.) > >> set PATH=C:\Windows\SYSTEM32;C:\Windows > > SET PATH=%~dp0installation\usr\sbin;%~dp0installation\bin;%SystemRoot%\System32;%SystemRoot% > >> @set HOME=%TOP%\home\%username% >> @chdir %TOP%\installation\bin > > That's just plain wrong and should not be done to begin with. > >> @start mintty.exe -e %TOP%\installation\bin\bash.exe --login -i > > START /B mintty.exe - > >> exit > > Don't call "EXIT" unless you have no other choice. > >> for using Cygwin in a user-level installation to my local directory. > > Cygwin don't care, what level you are using it from, as long as the > environment is set up correctly. > >> It's not a big deal to go through these and update them if Cygwin >> loses its ability to interpret Windows-style HOME paths, but there are >> probably a lot of users out there who aren't on the mailing list and >> wouldn't know that this change was happening until their installations >> broke. > >> So I'm in camp 'leave it as-is', maybe with the exception of >> disallowing relative paths. :) > > I don't know how to say it politely, so I would be blunt: Your setup is wrong. > There's at least two ways to do it right, but none of them is coming close to > what you have right now. > Cygwin offers ability to make all you want pretty straight without any > tantric scripts. > > > -- > With best regards, > Andrey Repin > Thursday, August 6, 2015 03:07:01 > > Sorry for my terrible english... > -- 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
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |