- or download this
$ perl -MO=Deparse -le ''
-e syntax OK
BEGIN { $/ = "\n"; $\ = "\n"; }
();
- or download this
$ perl -MO=Deparse -l001 -e ''
-e syntax OK
BEGIN { $/ = "\n"; $\ = "\001"; }
();
- or download this
$ perl -MO=Deparse -0001 -e ''
-e syntax OK
BEGIN { $/ = "\001"; $\ = undef; }
();