Help for this page
$ perl -s -foo=bar -e 'print $foo,$/ if $foo' Unrecognized switch: -foo=bar (-h will show valid options). ... # at last!
$ perl -se 'print "$foo\n" if $foo' -- -foo 1 $ perl -se 'print "$foo\n" if $foo' -- -foo=bar bar