X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-5.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org MIME-Version: 1.0 In-Reply-To: References: <4FF9ED18 DOT 4080006 AT gmail DOT com> Date: Mon, 9 Jul 2012 08:35:47 -0400 Message-ID: Subject: Re: Inconsistence on file operation when the name already exists with exe extension From: Earnie Boyd To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: 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 On Sun, Jul 8, 2012 at 4:37 PM, Aaron Schneider wrote: > > > > -- This way works to have the two files simultaneously --: > touch file > touch file.exe > > -- This way doesn't --: > touch file.exe > touch file Add a period character to the file name without extension. Cygwin will consider file.exe to be the same as file but file. is not the same. > > -- This works again and is similar to 1st --: > touch file.exe && bzip2 file.exe > touch file > bzip2 -d file.exe.bz2 > ---- > How can this be? Since file.exe is specific it isn't the same as file as Cygwin sees them. However, the file without the extension will mask file.exe so that file.exe will not be executed by Cygwin unless you specify the full file name. So in essence file is a pseudo symbolic link to file.exe; you cannot overwrite the pseudo symbolic link. -- Earnie -- https://sites.google.com/site/earnieboyd -- 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