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 Date: Mon, 18 Aug 2003 17:59:27 -0400 From: "Pierre A. Humblet" To: cygwin AT cygwin DOT com Subject: Re: -x weirdness Message-ID: <20030818215927.GA371185@Worldnet> References: <16193 DOT 14627 DOT 802702 DOT 855384 AT scicily DOT montreal DOT ad-opt DOT com> <197-1578450001 DOT 20030818232842 AT familiehaase DOT de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <197-1578450001.20030818232842@familiehaase.de> User-Agent: Mutt/1.4i On Mon, Aug 18, 2003 at 11:28:42PM +0200, Gerrit P. Haase wrote: > > Nope. Seems to be a bug in your perl version. Which version are you > using right now? I consider the 5.8.0 series will be removed from the > mirrors soon, I was not very happy with it. 5.6.1-2 will stay and > eventually be updated to use cygwin-1.5.2 and probably also some day > in future there will be a 5.6.2 release, I'll look into this issue if > it is a bug in 5.6.x, and my 5.8.1-tobe snapshot with cygwin 1.5.2 > does it the correct way: > > $ perl -e 'print -x "/usr/bin/bash" ? 0 : 1 , "\n"' > 0 > $ perl -e 'print -x "/usr/bin/bash.exe" ? 0 : 1 , "\n"' > 0 > $ perl -v > > This is perl, v5.8.1 built for cygwin-multi-64int > (with 1 registered patch, see perl -V for more detail) > ... Gerritt, FWIW, your test above is not conclusive (which doesn't mean that your 5.8.1-tobe is incorrect). You need to setup a situation as described by Benoit where ls -l appears to show that the file isn't executable although it really is. Using the access function is the way to go. This is what I observe (with perl from setup) $ perl -v This is perl, v5.8.0 built for cygwin-multi-64int $ perl -e 'print -x "/usr/bin/bash" ? 0 : 1 , "\n"' 1 $ [ -x /usr/bin/bash ]; echo $? 0 Pierre -- 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/