简体   繁体   中英

How can I do inplace editing (-i) with perl on windows?

In the unix/linux version, I'd simply change the first line:

#!perl -i.bak

Using Activestate perl on windows, where I've created the association with .pl, I can run a perl script directly from the command line.

myScript.pl

How can I do inplace editing of files if I still want to use the default association?

Sounds like a trick question, and I wonder if I am understanding you right.

perl -pi.bak myScript.pl myfiletochange

Just call perl, supply the switches and the script name, and off you go.

Now, it may be that you do not want to supply these extra arguments. If so, you can simply set the variable $^I , which will activate the inplace edit. Eg:

$^I = ".bak"; # will set backup extension

Since you are going to be using a script you might want to do something like this:

sub edit_in_place
{
    my $file       = shift;
    my $code       = shift;
    {
        local @ARGV = ($file);
        local $^I   = '';
        while (<>) {
            &$code;
        }
    }
}

edit_in_place $file, sub {
    s/search/replace/;
    print;
};

if you want to create a backup then change local $^I = ''; to local $^I = '.bak';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM