cvs commit: perlfaq perlfaq3.pod
[email protected] (brian d foy) 17 Nov 2005 17:22:02 -0000
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 05/11/17 09:22:02 Modified: . perlfaq3.pod Log: * whitespace and wrapping fixes Revision Changes Path 1.54 +13 -14 perlfaq/perlfaq3.pod Index: perlfaq3.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq3.pod,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- perlfaq3.pod 14 Nov 2005 16:38:12 -0000 1.53 +++ perlfaq3.pod 17 Nov 2005 17:22:02 -0000 1.54 @@ -42,12 +42,12 @@ =head2 Is there a Perl shell? -The psh (Perl sh) is currently at version 1.8. The Perl Shell is a -shell that combines the interactive nature of a Unix shell with the -power of Perl. The goal is a full featured shell that behaves as -expected for normal shell activity and uses Perl syntax and -functionality for control-flow statements and other things. -You can get psh at http://sourceforge.net/projects/psh/ . +The psh (Perl sh) is currently at version 1.8. The Perl Shell is a shell +that combines the interactive nature of a Unix shell with the power of +Perl. The goal is a full featured shell that behaves as expected for +normal shell activity and uses Perl syntax and functionality for +control-flow statements and other things. You can get psh at +http://sourceforge.net/projects/psh/ . Zoidberg is a similar project and provides a shell written in perl, configured in perl and operated in perl. It is intended as a login shell @@ -55,17 +55,16 @@ or your local CPAN mirror. The Shell.pm module (distributed with Perl) makes Perl try commands -which aren't part of the Perl language as shell commands. perlsh -from the source distribution is simplistic and uninteresting, but -may still be what you want. +which aren't part of the Perl language as shell commands. perlsh from +the source distribution is simplistic and uninteresting, but may still +be what you want. =head2 How do I find which modules are installed on my system? -You can use the ExtUtils::Installed module to show all -installed distributions, although it can take awhile to do -its magic. The standard library which comes with Perl just -shows up as "Perl" (although you can get those with -Module::CoreList). +You can use the ExtUtils::Installed module to show all installed +distributions, although it can take awhile to do its magic. The +standard library which comes with Perl just shows up as "Perl" (although +you can get those with Module::CoreList). use ExtUtils::Installed;