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:date:from:to:subject:message-id:references :mime-version:content-type:content-transfer-encoding :in-reply-to; q=dns; s=default; b=yada5frRluSZc5e4m/mb+QymsHqtUL MOwiML2VAbgvY8QWH8x4vGfl9Up7QTXR2gzmMhjCgUECYhMOli9hxt+RO4TiuXk3 QswDO52XaIZw3YPSCMgwUUrGR2+y+EtNWj5+P5LA4v22vh0LmRCbB8kWo/S8wPDK 7SPHcxuY1KNUE= 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:date:from:to:subject:message-id:references :mime-version:content-type:content-transfer-encoding :in-reply-to; s=default; bh=HOWMnfviUuyWt+UjNfVR25L2Ktk=; b=g1AO hI1A0Z24HgZRKZhFQVAzf1xKYUaAe4DXcT8rfTPjNyntUfC3oFnx5iqNgwppT07t YMeRiz7JF5UmGvq9Q3Ir/UgPQOEOWBOqQTafYiP7Sj7/U9/skcyyqKHB15PxTbc1 EryQmL1SErAMeohDl7DcfGv3WJhbOKbTHJ7SLx8= 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 X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL,BAYES_20,RP_MATCHES_RCVD,TW_YG autolearn=ham version=3.3.1 Date: Fri, 19 Apr 2013 10:44:51 -0700 From: Gary Johnson To: cygwin AT cygwin DOT com Subject: Re: ln -s do not work Message-ID: <20130419174451.GA26904@phoenix> Mail-Followup-To: cygwin AT cygwin DOT com References: <51717B9E DOT 9060701 AT gmail DOT com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <51717B9E.9060701@gmail.com> User-Agent: Mutt/1.5.20 (2009-06-14) On 2013-04-20, Arthur Tu wrote: > After I did this: > $ ln -s Repos/bugn/ Projects/ > > A file named `bugn` is created under Projects, > as it is said in the cygwin documentation. > > However, cygwin does recognise `bugn` as a link file, > while can't determine where it point to. > > I draged the file to notepad.exe, and see following text: > > ! e p o s / b u g n / > > > $ cygcheck -f /bin/ln.exe > coreutils-8.15-1 > > I am sure `ln -s some_directory` used to work well on my computer. > I tested hard link or soft link of the file, it worked well. > Help. This is not a Cygwin problem. Linux, for example, behaves the same. What you did was create a symbolic link in Projects to the file named Repos/bugn, a relative path name. Any reference to Projects/bugn is resolved to Projects/Repos/bugn. This is correct, but not what you intended. One alternative would be $ ln -s ../Repos/bugn/ Projects/ Another would be $ ln -s $PWD/Repos/bugn/ Projects/ Which one is better depends on your environment and on what you're trying to achieve. Regards, Gary -- 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