http://qs321.pair.com?node_id=1002718


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

From How can I use Perl's i option from within a program? the -i option changes $^I which in turn changes how <> works. That means the magic only works inside a while loop that uses <>. Your code with -i added on for me made a .bak copy but cleared the original and printed to the command line. The following code does what you requested.

#!/perl -i.bak while(<>) { print; if(eof) { print "\n"; print "##Copyright (C) 2012 by firstName lastName\n" ; } }

Replies are listed 'Best First'.
Re^2: copying a file with .bak extension
by Anonymous Monk on Nov 07, 2012 at 19:20 UTC

    Script works great thanks a lot! Is it possible to have the backup get modified instead of the original? Only the original gets the modification. Thanks again.

      You could use kennethk's updated solution but open the newly created backup in append mode instead of the original.