View Single Post
  #1   (View Single Post)  
Old 18th October 2008
IIMarckus IIMarckus is offline
Port Guard
 
Join Date: Aug 2008
Posts: 13
Default Python/Apache

Code:
$ man python
man: no entry for python in the manual.
$ man -k python
python (1) - an interpreted, interactive, object-oriented programming language
$ man python (1)
ksh: syntax error: `(' unexpected
$ man python \(1\)
man: no entry for python in the manual.
man: no entry for (1) in the manual.
$ man "python \(1\)"
man: no entry for python \(1\) in the manual.
$ man "python (1)"
man: no entry for python (1) in the manual.
$ locate python | grep 1
...
/usr/local/man/man1/python2.5.1
...
$ man python2.5.1
man: no entry for python2.5.1 in the manual.
$ man -M /usr/local/man/man1/ python2.5.1
man: no entry for python2.5.1 in the manual.
Am I missing something obvious here?

Last edited by IIMarckus; 18th October 2008 at 04:49 AM.
Reply With Quote