Front page | perl.beginners |
Postings from March 2002
FW: Perldoc question
From:
JCollins2
Date:
March 13, 2002 06:13
Subject:
FW: Perldoc question
Message ID:
CB943C0EABABD5118B3300065B046C4D0153131F@ehope48.hew.us.ml.com
If new to unix and you want to find perldoc (or any module),
try this:
find . -name perldoc* -print
That will locate perldoc and show you the path to it.
You could also try:
whence perldoc
That may also work (works for me under ksh)
Hope that helps,
Joe
-----Original Message-----
From: Tyler Longren [mailto:tyler@captainjack.com]
Sent: Tuesday, March 12, 2002 2:24 PM
To: Joe Echavarria; Hanson, Robert; beginners@perl.org
Subject: Re: Perldoc question
type this at your command line:
echo $PATH
That should display a few folders (/usr/local/bin, /usr/bin, etc...).
your perldoc executable should be located in a folder listed in your $PATH.
Good luck,
Tyler
----- Original Message -----
From: "Joe Echavarria" <joe_echavarria@yahoo.com>
To: "Hanson, Robert" <RHanson@APTEGRITY.com>; <beginners@perl.org>
Sent: Tuesday, March 12, 2002 1:15 PM
Subject: RE: Perldoc question
> I really don ' t understand what you mean. I am new to
> Unix and Perl.
> Please help me out here. What i should to ?, read or
> what ?
>
> Thanks.
>
> Joe.
> --- "Hanson, Robert" <RHanson@APTEGRITY.com> wrote:
> > perldoc isn't in your path most likely.
> >
> > Check your path environment variable (echo $PATH),
> > and make sure that
> > perldoc is in one of those directories. If I had to
> > guess you probably have
> > a symlink to the perl executable in your path, but
> > not the actual bin/
> > directory of perl.
> >
> > Rob
> >
> > -----Original Message-----
> > From: Joe Echavarria
> > [mailto:joe_echavarria@yahoo.com]
> > Sent: Tuesday, March 12, 2002 1:48 PM
> > To: beginners@perl.org
> > Subject: Perldoc question
> >
> >
> > hi there,
> >
> > On my unix box when i try to get perl help from
> > the
> > command line using "perldoc print" or "perlfunc" i
> > get
> > these errores.
> >
> > perlfunc: not found
> > perldoc: not found
> >
> > How can i fix this problem ?
> >
> > Thanks.
> >
> > Joe.
>
>
> __________________________________________________
> Do You Yahoo!?
> Try FREE Yahoo! Mail - the world's greatest free email!
> http://mail.yahoo.com/
>
> --
> To unsubscribe, e-mail: beginners-unsubscribe@perl.org
> For additional commands, e-mail: beginners-help@perl.org
>
-
FW: Perldoc question
by JCollins2