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:from:date :message-id:subject:to:content-type; q=dns; s=default; b=q9Zl6cX xQr/74pZyScmgsKTv+okGV3yRLfpRYUUyIsW77Yu/MEBBc8oPSIe8NDGdIurfvAE X0X7/1AIhVxQNW9grjNzYqODgnhlcv0+qgJafR07cqi2aK7wPfavDsQNISZ2+RUZ 4w36LeSiRvPiri/OzGIq/NZZOXuJEYtjagEI= 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:from:date :message-id:subject:to:content-type; s=default; bh=WEYvGpJAu3Acw xg1V3Z7iYr0YuE=; b=Q5/CDKRnamg5sC/wZmMZ3QuAn4xIisNKPZPxO4mPVy0am Bh+GGXNLS3ZZc3w48opH8yQIJoWff3WYaPfQQfRUtItQi6330DvXNE6qnosv4MKU a4OfvnamKknoC1ON9xQiYIR6UwE4G/UPR/wtEmRluY+olDZs+88hyZzNTp4f44= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: 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 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=editor X-HELO: mail-qk0-f171.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to; bh=H0az/H/Iz31+YbOiAbD586ARsY++XvM1fGsiqwP67HI=; b=AOq07W1tS2mKJQROi42upd3r0cOHCx0KmC83uhR4VtAPgz/9G4VM8qK3rQABy2DJWD DoFPawKBZR+if5VsfHHMkblHcFBlRQz8k6aJaRwZ9IR4b21iYYerJMTVv5d7h7fGCtZ1 1FHSd9C6ZbXvc3DW8VXM6jvwbcZJ+48iEnDfmSgaNkzD2RLezbZe//u0Jkoq/eJeF5dn IGXaCJ2GtW7GW38ZSuwyRb5tqQZDZUwc23RCG9tnFo4JlzDlCIc3Q/78rfHd4S7lDdDa bvROqCDPlnKOb/3Y40IHEqCSmLHyR7r2HcpAKfE9Wo6WHEXgL1jQHLbbZkdQ1rBuacC1 We+A== X-Gm-Message-State: AEkoousxXm+9VOh9bwt3m0fP0V0tRcSYK7suAJsorshNq1ieVFExvT+xdxSS7aTiD7/CzEOFEx1CrIyCNG/6qQ== X-Received: by 10.46.32.77 with SMTP id g74mr27248900ljg.34.1470751984231; Tue, 09 Aug 2016 07:13:04 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <8dc84987-802d-30d3-3ebb-2ba25871b561@gmail.com> References: <001001d1edf1$a4e1ae90$eea50bb0$@rogers.com> <1C0AE95E-0118-4353-AA77-4D41F1AE9AE1 AT solidrocksystems DOT com> <001a01d1eea9$f7949a90$e6bdcfb0$@rogers.com> <76ec05e9-140a-19cb-942b-698582c3d024 AT gmail DOT com> <001f01d1ef2c$f04af9e0$d0e0eda0$@rogers.com> <20160805152951 DOT GO25811 AT calimero DOT vinschen DOT de> <57A6ED1C DOT 1060402 AT gmx DOT de> <20160808112321 DOT GF32150 AT calimero DOT vinschen DOT de> <20160808143321 DOT GS25811 AT calimero DOT vinschen DOT de> <8dc84987-802d-30d3-3ebb-2ba25871b561 AT gmail DOT com> From: Erik Soderquist Date: Tue, 9 Aug 2016 10:13:02 -0400 Message-ID: Subject: Re: PATHEXT is fundamental to Windows and Should be recognised by CYGWIN To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes On Tue, Aug 9, 2016 at 8:58 AM, cyg Simple wrote: > I tried "chmod +x foo.txt; ./foo.txt" but that results in Cygwin > assuming the text file is a script and executing each line of the file. > If PATHEXT were used only to determine that the file should be passed to > ShellExecute instead it might be beneficial but since I can easily just > do "cmd /c foo.txt" then probably not so much. That is the behavior I would expect in any *nix environment, and therefore consider the correct behavior within cygwin. Additionally, starting a text editor for foo.txt is not a function of PATHEXT, but rather of file association. In CMD.EXE, C:\tmp>echo some text >foo.txt C:\tmp>foo 'foo' is not recognized as an internal or external command, operable program or batch file. C:\tmp>echo echo some text >foo.cmd C:\tmp>foo C:\tmp>echo some text some text C:\tmp> PATHEXT looks for *executable* files, not file association. I warned previously in this thread about getting the two confused. -- Erik -- 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