X-Spam-Check-By: sourceware.org Message-ID: <20060130192233.14576.qmail@web30606.mail.mud.yahoo.com> Date: Mon, 30 Jan 2006 14:22:33 -0500 (EST) From: Martin Subject: Re: 1.5.19-4 exec family of functions find wrong file to execute To: cygwin AT cygwin DOT com In-Reply-To: <20060123161255.21937.qmail@web30611.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Unsubscribe: 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 Any response? TIA --- Martin wrote: > I am attempting to invoke a command with > execvp/execlp. If a file appears in my PATH before > the executable desired and has the same name as the > executable, the first occurrence of the file name is > used as the executable to invoke. Even though the > first file is NOT marked as executable. > > The attached testcase illustrates this. > Here's a simple shell log: > > bash-3.00$ gcc test2.c -o test2 > bash-3.00$ PATH=/usr/bin:. > bash-3.00$ test2 nopathnoext > NoPathNoExt > bash-3.00$ touch echo > bash-3.00$ ls -l echo > -rw-r--r-- 1 test None 0 Jan 21 15:39 echo > bash-3.00$ test2 nopathnoext > NoPathNoExt > bash-3.00$ PATH=.:/usr/bin > bash-3.00$ test2 nopathnoext > nopathnoext: No such device or address > bash-3.00$ rm -f echo > bash-3.00$ test2 nopathnoext > NoPathNoExt > bash-3.00$ echo garbage > echo > bash-3.00$ test2 nopathnoext > nopathnoext: Permission denied > bash-3.00$ ls -l echo > -rw-r--r-- 1 test None 8 Jan 21 15:40 echo > bash-3.00$ test2 nopathext > NoPathExt > bash-3.00$ test2 path > Path > > Is this normal behavior for execlp/execvp? > Shouldn't the execution permission be set in order to > execute it? > > Thanks for your help, > Martin > __________________________________________________________ Find your next car at http://autos.yahoo.ca -- 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/