Perl: Loop through a file and substitute

前端 未结 3 503
攒了一身酷
攒了一身酷 2021-01-05 18:21

I simply wanna read in a logfile, do a search and replace, and then write out the changes to that same logfile.

What\'s the best practice way of doing this in Perl?

3条回答
  •  一个人的身影
    2021-01-05 18:29

    This is often done with a one-liner:

    perl -pi.bak -e "s/find/replace/g" 
    

    Note the -i.bak portion -- this creates a backup file with the extension .bak. If you want to play without a net you can do this to overwrite the existing file without a backup:

    perl -pi -e "s/find/replace/g" 
    

提交回复
热议问题