Tagged Questions

32
votes
6answers
2k views

What does the number in brackets shown after unix command names mean?

E.g man(1), find(3), updatedb(2) ? what do these numbers mean ?
11
votes
3answers
237 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: ...
6
votes
2answers
263 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?
2
votes
1answer
56 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 ...
2
votes
5answers
181 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, ...