![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Browse Web pages through command line | vroomlicious | UNIX for Dummies Questions & Answers | 5 | 04-19-2008 07:06 AM |
| Browse Web pages through command line | vroomlicious | UNIX for Dummies Questions & Answers | 2 | 04-18-2008 11:01 AM |
| How to develop C program using UNIX command | sundar.lsr | UNIX for Dummies Questions & Answers | 1 | 02-22-2008 12:00 PM |
| unix command for multifile program execution | alokmishra8 | Linux | 0 | 02-01-2008 01:20 AM |
| Java program calling a UNIX command | QUartz Ite | UNIX for Dummies Questions & Answers | 2 | 11-15-2001 06:17 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
man pages of any command from a c program in unix
i wanted to display the man pages of any command in unix from a c program.can some one help me plzzzzzz.
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Unless you want to create your own manpage viewer from scratch, this is the way to do it:
Code:
#include <stdlib.h>
...
system("man man");
|
|
#3
|
|||
|
|||
|
thanks a lot.
|
|||
| Google The UNIX and Linux Forums |