Help for this page

Select Code to Download


  1. or download this
    perl -i -l -p -e ' s /(.*)/Number => ${1}/s; '  test.txt
    
  2. or download this
    use File::Slurp qw/ edit_file /;
    edit_file { s /(.*)/Number => ${1}/s; } 'test.txt';