Re: Re:symlinks

2002-02-06 Thread Christopher Faylor
On Wed, Feb 06, 2002 at 08:09:14AM -0800, Michael A Chase wrote: >- Original Message - >From: "Jorge Goncalvez" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, February 06, 2002 02:30 >Subject: Re:symlinks > >>Hi, I have made

Re: Re:symlinks

2002-02-06 Thread Michael A Chase
- Original Message - From: "Jorge Goncalvez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 06, 2002 02:30 Subject: Re:symlinks > Hi, I have made a symlink with the cygwin command ln -s and i wanted to remove > it by Perl code:

Re:symlinks

2002-02-06 Thread Jorge Goncalvez
Hi, I have made a symlink with the cygwin command ln -s and i wanted to remove it by Perl code: I have this: $PROG2 = "C:\\cygwin\\bootp\\linux\\install "; if (-l $PROG2) { system "rm $PROG2"; } else{ print "popo"; } The problem is that the symlink install it isn't removed althoug