in reply to Re: 'perl -le' not working on the command line
in thread 'perl -le' not working on the command line

To say it explicitly, cmd.exe, turns perl -le 'print 2**255;' into
$ perl -le " 'print " "2**255;'" Can't find string terminator "'" anywhere before EOF at -e line 1.
that is, the program is 'print , a syntax error. 2**255;' ends up in @ARGV.