diff options
author | Perl 5 Porters <perl5-porters.nicoh.com> | 1996-01-12 02:09:11 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1996-01-12 02:09:11 +0000 |
commit | 3c81428c5fa001df0f0ac7d48bfc483afd5efff5 (patch) | |
tree | 8279e47e555a76188ed5d0d481a6773018b5be7c /pod/perlrun.pod | |
parent | 26221e3534264780d1048cb71f853279863ceb01 (diff) | |
download | perl-3c81428c5fa001df0f0ac7d48bfc483afd5efff5.tar.gz |
Updates from Tim's -m/-M/-V patch.
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 12ccaa8e18..1e1a0cb814 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -131,6 +131,12 @@ your program. runs the script under the Perl debugger. See L<perldebug>. +=item B<-d:foo> + +runs the script under the control of a debugging or tracing module +installed as Devel::foo. E.g., -d:DProf executes the script using the +Devel::DProf profiler. See L<perldebug>. + =item B<-D>I<number> =item B<-D>I<list> @@ -240,6 +246,15 @@ separator if the B<-l> switch is followed by a B<-0> switch: This sets $\ to newline and then sets $/ to the null character. +=item B<-M>I<module> + +executes C<use> I<module> C<;> before executing your script. You can +also do C<-M'Foo qw(Bar Baz)'>. + +=item B<-m>I<module> + +executes C<use> I<module> C<();> before executing your script. + =item B<-n> causes Perl to assume the following loop around your script, which @@ -358,6 +373,15 @@ warnings. prints the version and patchlevel of your Perl executable. +=item B<-V> + +prints summary of the major perl configuration values and the current +value of @INC. + +=item B<-V:name> + +Prints to STDOUT the value of the named configuration variable. + =item B<-w> prints warnings about identifiers that are mentioned only once, and |