1
vote
9answers
353 views
Where is the ‘man’ Program for Windows (Program to open UNIX man pages)?
I'm looking for the windows executable for the linux man (manual reader).
I tried googling around, but got frustrated with the kind of results it came up with, owing to 'man' being such a common …
1
vote
3answers
59 views
No manual entry for fcntl problem
When I use `man fcntl' got the message:
No manual entry for fcntl
which the pkg is needed to install?
ps. I use debian.
2
votes
2answers
168 views
Catching wrong array reference in C++
How do I catch wrong array reference in C++? Why doesn't the following code work:
#include <exception>
int * problemNum = new int;
int (* p [100])() = {problem1, problem2, …
4
votes
2answers
173 views
Distinguishing a pipe from a file in Unix
Given a FILE*, is it possible to determine the underlying type? That is, is there a function that will tell me if the FILE* is a pipe or a socket or a regular on-disk file?
4
votes
2answers
305 views
Set local environment variables in C++
How do I set an environment variable in C++?
They do not need to persist past program execution
They only need to be visible in the current process
Preference for platform independent but for my …
10
votes
3answers
118 views
PROGNAME(x) refrences in manpages — What does the digit in ()s mean? [closed]
Possible Duplicates:
Why do programs in Unix-like environments have numbers after their name?
Why do programs in Unix-like environments have numbers after their name?
Duplicate: …
2
votes
1answer
109 views
How can I define sections without === Headings for RDoc::usage()?
I like to generate man pages using '--help' output via help2man and txt2man. Ruby's RDoc system is very convenient, but I can't seem to configure RDoc::usage in exactly the way that I want. Here's a …
5
votes
3answers
220 views
man sections
How do I access specific sections of man pages?
