in reply to Re: copying a file with .bak extension
in thread [SOLVED] copying a file with .bak extension

I'm not that advanced, I just started playing with perl a couple weeks ago so I'm still learning how it works.

  • Comment on Re^2: copying a file with .bak extension

Replies are listed 'Best First'.
Re^3: copying a file with .bak extension
by kennethk (Abbot) on Nov 07, 2012 at 20:37 UTC
    I would argue that's exactly why you should adopt this approach. As a new user, you should avoid using classic Perl "magic", and make sure your code is straight-forward and readable. The script, as I've presented it, loops over the passed file names (@ARGV), tests to make sure you've passed file names that can be found (-e), copies the files using a CORE module (File::Copy) and then modifies the file with an append (perlopentut). It tests if operations succeed and is warnings and strict compliant. I never use command line switches in any of my code unless I'm writing one-liners, and half that time it would have been faster just to write a proper script.

    #11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.