in reply to Re^2: perl -e ';' -MCGI
in thread perl -e ';' -MCGI

-e does not end the processing of the options.

$ perl -e'print "a\n";' -e'print "b\n";' a b

And an example with -M:

$ perl -e'print "a\n";' -e'print "b\n";' -MO=Deparse print "a\n"; print "b\n"; -e syntax OK