Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -0lpe 's/2/4/gs'
    BEGIN { $/ = "\000"; $\ = "\000"; }
    ...
    $ perl -MO=Deparse -l1p0e 's/2/4/gs'
    BEGIN { $/ = "\000"; $\ = "\001"; }
    ...
    
  2. or download this
    $ perl -MO=Deparse -0777 -lpe 's/2/4/gs'
    BEGIN { $/ = undef; $\ = ""; }
    ...