Man pages are the documentation pages that come preinstalled with almost all substantial Unix and Unix-like operating systems
1
vote
1answer
27 views
View XCode docset docs from terminal
Is there some tool that can allow me to view an installed DocSet as something like a manpage? Maybe something along the lines of ri in ruby, godoc in Go, etc? I do most of my Objective-C coding in ...
0
votes
1answer
22 views
Visual Studio Manual Pages For C
What do windows developers do when they need to look up the man page for a typical C function ? For example, say I am writing some C code in Visual Studio and I need to remember the order of arguments ...
0
votes
3answers
156 views
How can I get a process to core mapping in C?
What library function can I call to get mapping of processes to cores or given a process id tell me what core it's running on, it ran last time, or scheduled to run. So something like this:
core 1: ...
-1
votes
1answer
33 views
Some man pages not found [closed]
Ubuntu 12.04...
I had fedora a couple of years back and I saw the man pages for the following there...
unistd.h,
sys/types.h,
standard typedefs (suffixed by "_t") etc.
I tried this...
man unistd
...
1
vote
0answers
17 views
man page synopsis notation
When reading man pages, in my experience there has always been a synopsis section. e.g.
MV(1) BSD General Commands Manual MV(1)
NAME
mv -- move files
SYNOPSIS
...
2
votes
1answer
14 views
avoid space in manpage after .BI
I'm attempting to write a somewhat portable manpage, in which I need to describe the format of a particular string. I use the .BI macro to switch between fixed and variable parts, however I have more ...
0
votes
1answer
102 views
Installing git documentation packages on RHEL 5
I am trying to install git 1.8.1 on a RHEL 5 system, and I am having a ton of difficulty dealing with the documentation portion of the build. Namely, asciidoc. There are problems with the Docbook ...
0
votes
0answers
16 views
Which man sections to install to (and gzip or not)?
The makepp html documentation is grouped into various sections in the unfoldable sidebar. OTOH the equivalent man pages are invariably installed to section 1, even though only few of them actually ...
0
votes
1answer
27 views
Install a manpage manually on Debian-based OS
For a little Python script "mytool" I wrote a Manpage that I want to install manually (no OS package) on a Debian based OS.
How do I do that?
I tried gzipping the manpage and copied it to several ...
1
vote
1answer
53 views
Specific man page for shell built-in commands like 'source'
If you execute any of the following in the command line
man source
man readonly
man suspend
...
The output is the same manpage describing shell built-in commands in general.
I've searched for ...
0
votes
0answers
62 views
Understanding a tcpdump line
Reading the manpage of tcpdump I found this example
tcpdump 'tcp[tcpflags] & (tcp-syn|tcp-fin) != 0 and not src and dst net localnet'
but I don't understand it, especially the last part.
The ...
0
votes
0answers
42 views
Any tool that helps read man pages in Unix like systems?
In the socket programming under a unix like environment, if I need to know the usage of getsocketbyname() I can man getsocketbyname to get the info.However I may not know which I should man when I ...
0
votes
2answers
83 views
Why did RVM break my MANPATH on mac osx?
Ever since installing RVM, my manpages are broken. Current versions of man don't use the MANPATH variable, so why is it being set to .rvm/man and why isn't there a full catalog of manpages inside ...
0
votes
1answer
186 views
Valid Asciidoc to convert to Manpage (with a2x)
I want to write the manpage for my CLI-script with Asciidoc and convert it with
a2x --doctype manpage --format manpage MYMANPAGE.ASCIIDOC
I could not find any Asciidoc example out there which can ...
0
votes
0answers
32 views
Defining manpages with Module::Build
I have a module that installs with Module::Build. How should I specify in my Build.PL file for it to generate appropriate manpages for scripts defined with the script_files pragma? Currently ./Build ...
0
votes
2answers
90 views
Search for string while viewing a manpage
When viewing a manpage say man ls, how does one search the content of the man page? (similarly, in vim you can call :/search_string what is a comprable command while viewing a man page?)
2
votes
5answers
602 views
How do I install the Git man pages on OS X?
I installed Git via the Mac OS X link here http://git-scm.com/download
After installing it, I try the following in the Terminal:
$ git help fetch
$ git help remote
$ man git
$ man git-fetch
...
2
votes
2answers
301 views
What tools are available to edit manpages, i.e. GUI WYSIWYG editors (any platform)
Is there any decent GUI(Graphical User Interface) WYSIWYG(What You See is What You Get) editor (on any platform) that can be used for authoring/editing manpages? An app that can export to the troff ...
1
vote
1answer
152 views
How to convert AsciiDoc to Perl POD?
How to convert manpage written in AsciiDoc lightweight markup language automatically into Perl's POD (Plain Old Documentation)?
Perhaps something that converts from DocBook to POD (the conversion ...
1
vote
1answer
867 views
where is make and man pages under MacOS Lion?
I just installed MacOS X Lion and XCode (which now needs to be downloaded from the Apple store). It seems that make and the man pages are missing. Does anybody know where they are?
2
votes
1answer
545 views
using a man page viewer in eclipse
After having downloaded a Linux Man Page Viewer, I am not seeing the actual man page when hovering over a function.
Should i enable it somehow? Is where a menu item i should be using?
Please ...
0
votes
1answer
496 views
RSA_sign(), object(3) and NID_sha1
The manpage for RSA_sign() says about the type parameter:
type denotes the message digest algorithm that was used to generate m.
It usually is one of NID_sha1, NID_ripemd160 and NID_md5; ...
2
votes
2answers
541 views
Colored manpages with tcsh?
I really like the colored manpages which can are achieved by
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
...
16
votes
3answers
322 views
Why does man 2 open say this?
I ran into this question while typing man 2 open. It says that there are two kinds of open, one with two args, and one with three! last time i checked we could not overload functions in C. How did ...
0
votes
1answer
33 views
Is there a command to search for a string within all man pages installed in the man-db
I know that if I can't remember a command I can just look it up on Google. But this should be possible from the shell itself. If I could output all the man-pages, I could run a grep on them and find ...
1
vote
1answer
509 views
What's the Cygwin/Red Hat equivalent to Debian's manpages-dev, manpages-posix-dev?
I'm using Cygwin, and just discovered to my dismay that the package naming scheme is derived from Red Hat. I need the development man pages, called manpages-dev and manpages-posix-dev on Debian-based ...
5
votes
1answer
371 views
man page generation/packaging/installation with cmake
I am looking for some good examples / tutorials on how to generate, package, and install man pages in projects using CMake.
Thanks.
1
vote
2answers
81 views
Pthreads’ manpages really don’t cover very much; where can I find more info?
The pthread_* manpages are really, really sparse in lots of areas; for instance, for all I can tell, the various pthread_attr_set* are completely undocumented — that is, I can’t figure out what each ...
7
votes
4answers
239 views
Best way to author man pages?
What's the best way to author man pages? Should I write using the standard man macros, or is there some clever package available now that takes some kind of XML-ified source and can output man pages, ...
3
votes
2answers
426 views
Preview man-page without installing package
I've checked out some typical open source project which is using auto-tools. I want to hack a bit on this package, but I would also like to change something in the man-page of the package.
The ...
3
votes
1answer
304 views
ubuntu “man glRotate”?
When on MacOSX, "man glRotate" brings up the glRotate manpage.
On ubuntu, with manpages-dev and manpages-posix-dev insatlled, "man glRotate" doesn't bring up the glRotate manpage (though I can build ...
7
votes
10answers
6k 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
446 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
479 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, ...
6
votes
2answers
327 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?
17
votes
3answers
13k 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 ...
11
votes
3answers
281 views
PROGNAME(x) refrences in manpages — What does the digit in ()s mean? [duplicate]
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
5answers
259 views
Best practices to put into a man page
Is there a best practices guideline for writing man pages?
What should be included in the layout? The standard ones are:
NAME
SYNOPSIS
DESCRIPTION
EXAMPLES
SEE ALSO
There are others like OPTIONS, ...
2
votes
1answer
361 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 ...
11
votes
3answers
565 views
4
votes
3answers
1k views
Manpage scandir() prototype weirdness
I have a problem with scandir(): The manpage contains this as prototype:
int scandir(const char *dir, struct dirent ***namelist,
int (*filter)(const struct dirent *),
int (*compar)(const struct ...
71
votes
6answers
5k views
What does the number in brackets shown after unix command names mean? [closed]
E.g man(1), find(3), updatedb(2) ?
what do these numbers mean ?
