in reply to Perl command line switches

Perl has a syntax for embedded documentation called POD (perlpod). It's possible that that's what you're thinking of. If the author of the original file was kind enough to include any of this documentation in the file, then you can read it on the command-line with the pod2text command. Just enter:

pod2text <myscript.pl>

And that will print out any POD that exists in the file.