On Wed, Mar 27, 2002 at 07:51:12AM -0800, John Boucher wrote:
> Well I'm a VMS guy, but I don't know what catfile does. I'll see what I can
> find out about it, but I'd also like to know what you need it to do.

Given the following (or some variation on the following)

    volume:[some.dir]
    [.auto]
    [.ExtUtils.MakeMaker]
    .packlist

create a full path

    volume:[some.dir.auto.ExtUtils.MakeMaker].packlist

in less work than:

    perl "-MFile::Spec" -e "print File::Spec->catfile('volume:[some.dir]', '[.auto]', 
'[.ExtUtils.MakeMaker]', '.packlist')"

using only *very* commonly available VMS tools.

Not only is the above ugly, but you have to run perl and load
File::Spec over and over again, which is expensive and slow on VMS.


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>    http://www.pobox.com/~schwern/
Perl Quality Assurance      <[EMAIL PROTECTED]>         Kwalitee Is Job One
Cherry blossoms fall
I hurry to my final
boiling paste enema.
        -- mjd

Reply via email to