how do i get the "man perl"?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how do i get the "man perl"?
# 1  
Old 03-12-2002
Question how do i get the "man perl"?

I know is about MANPATH, BUT i don't how.

Perl is in my network. however, i am not able to use conmmand line "man perl". can anyone tell me?
# 2  
Old 03-13-2002
What is the exact error when you try?
# 3  
Old 03-13-2002
MySQL how do i get the "man perl?"

from the command prompt, type man -k perl.
press enter and the manual pages will appear.
# 4  
Old 03-13-2002
the error is:

when i type "man perl", the error is:
No manual entry for per

"man -k perl" -> appear nothing and turn to next prompt

help!
# 5  
Old 03-14-2002
Then it was either not installed in your $MANPATH, or it was not installed at all. You might want to check with your admin on this...
# 6  
Old 03-14-2002
how do i installed in my $MANPATH?

how do i installed in my $MANPATH?
CAN i do it myself? or i have to ask adm to do it for me?

thks
# 7  
Old 03-14-2002
You can do it urself
Just put it in your .cshrc or .profile depending on your shell
the following
csh
setenv MANPATH /usr/share/man:<dir>
where <dir> is the directory where ur man pages for perl are
/usr/share/man ---- If you want to man other programs --- Now that is important -- Or i am not to blame for the consequences Smilie

sh
set MANPATH=/usr/share/man:<dir>
export MANPATH

HTH
DP
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all, i have had AIX 7.2 :/# /usr/IBMAHS/bin/apachectl -v Server version: Apache/2.4.12 (Unix) Server built: May 25 2015 04:58:27 :/#:/# /usr/IBMAHS/bin/apachectl -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_worker_module (static) ... (3 Replies)
Discussion started by: penchev
3 Replies

2. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

3. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

4. Shell Programming and Scripting

Perl failure with "main::$fn" used only once:" in error logs

Hi all, Can anyone guess why this is happening? I am new to Perl, so please help me to fix this error: - I have a static html file which calls the cgi-perl script. HTML Code: <html> <head> <title> Hey Dude! </title> </head> <body> <form method="POST"... (3 Replies)
Discussion started by: bashily
3 Replies

5. Solaris

Relation btw commands, "man" and "more" ???

Hi guys, Hope u r doing find. I have this query. When we check the manual pages for a certain command, say man cat we see the manual page with more What is UNIX really doing here, I mean why not less command instead of more command. And can we have UNIX display the manual pages with less command... (2 Replies)
Discussion started by: gabam
2 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies

8. UNIX for Dummies Questions & Answers

better information source than "man rc.conf"?

i find the man page really cryptic. does anyone else have a source that explains how to use this file better? (1 Reply)
Discussion started by: xyyz
1 Replies

9. UNIX for Dummies Questions & Answers

"man date" command does not work

Hi there I'm logged in as root on a UNIX Spark 10 using a SSH client. I notice that the time on the machine is wrong and I type "man date" in order to receive the options how to change this. When typing "man date" and hitting Enter I get the message "No manual entry for date" Why? Am I... (1 Reply)
Discussion started by: aptit
1 Replies
Login or Register to Ask a Question