I think my answer probably suffered from the January bug. Here's
another way, addressing that problem in a slightly different way from
yours (less work
Try man cc or man gcc (if on a system with GNU tools). That probably isn't what you are looking for though, however MANY of the man pages on a system are about the standard C library and the syscalls of the OS you are on. eg. man 3 exec on a BSD system will bring up the documentation for the exec family of functions. It may be a different section on other *nixes, I seem to recall that stuff being in (2) on Linux, but I could be wrong. Try man <some C library function>
···
On Aug 29, 2005, at 3:18 PM, Randy Kramer wrote:
On Monday 29 August 2005 12:55 pm, Joe Cheng wrote:
ober wrote:
I have read over the man pages and can not seem to find a way to do
the following
Huh, never thought there might be a man page for ruby. Interesting, worth
reading (and now singleton methods might click into place).
And there's man pages for perl, python, c++ (cpp), and probably others, but no
c (or C or cee). Interesting!
The man page for c++ is for g++, the GNU GCC compiler. There is no
"c" or "c++" program, so there's no man pages for it. (there's a
perl, python, and ruby program, however, so there's man pages for
them)
···
On 8/29/05, Randy Kramer <rhkramer@gmail.com> wrote:
On Monday 29 August 2005 12:55 pm, Joe Cheng wrote:
> ober wrote:
> > I have read over the man pages and can not seem to find a way to do
> > the following
Huh, never thought there might be a man page for ruby. Interesting, worth
reading (and now singleton methods might click into place).
And there's man pages for perl, python, c++ (cpp), and probably others, but no
c (or C or cee). Interesting!
On Monday 29 August 2005 03:55 pm, Joe Van Dyk wrote:
The man page for c++ is for g++, the GNU GCC compiler. There is no
"c" or "c++" program, so there's no man pages for it. (there's a
perl, python, and ruby program, however, so there's man pages for
them)
On Monday 29 August 2005 03:33 pm, Logan Capaldo wrote:
Try man cc or man gcc (if on a system with GNU tools). That probably
isn't what you are looking for though, however MANY of the man pages
on a system are about the standard C library and the syscalls of the
OS you are on. eg. man 3 exec on a BSD system will bring up the
documentation for the exec family of functions. It may be a different
section on other *nixes, I seem to recall that stuff being in (2) on
Linux, but I could be wrong. Try man <some C library function>