Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Jan 2004 21:30:37 -0500
From:      parv <parv@pair.com>
To:        freebsd-ports@freebsd.org
Subject:   Re: Perl
Message-ID:  <20040129023037.GA2231@moo.holy.cow>
In-Reply-To: <20040129013843.GA1794@moo.holy.cow>
References:  <20040128194307.GB25550@parts-unknown.org> <20040129013843.GA1794@moo.holy.cow>

next in thread | previous in thread | raw e-mail | index | archive | help
in message <20040129013843.GA1794@moo.holy.cow>,
wrote parv thusly...
>
>   perl -MFile::Copy -e \
>     ' die "'p' does not exist" unless -e "./p";
>       move("p" , "r") or die "$!";
>     '
...
>   perl -MFile::Copy -e \
>     ' die "'p' does not exist" unless -e 'p';
>       move("p" , "r") or die "$!";
>     '

Oops, two copy-n-paste typoes in second command which should have
been identical to the first...


  perl -MFile::Copy -e \
    ' die "'p' does not exist" unless -e "./p";
      move("p" , "r") or die "$!";
    '
  ...
  perl -MFile::Copy -e \
    ' die "'p' does not exist" unless -e "./p";
      move("p" , "r") or die "$!";
    '


  - Parv

-- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040129023037.GA2231>