manpage

Managing Emacs *Man* buffer location?

倖福魔咒の 提交于 2019-12-10 11:32:38
问题 Emacs behaviour which recently[*] started to irritate me: I edit the file, and need some help M-x man something emacs politely splits frame into two windows and opens manpage there, I see both source and man, great while reading man I find that I need to followup further, so I M-x man anothertopic emacs opens new manpage in window previously occupied by my source, I see two manpages on the screen and can't edit anymore (until I switch buffer) Is it possible to make Man prefer reuse existing

Comparing Mac's and Unix manuals?

青春壹個敷衍的年華 提交于 2019-12-08 08:21:29
How can I list differences between Mac's and Unix manuals? For example, between the following commands uniq guniq I tried the following unsuccessfully diff (man uniq) (man guniq) Paul Tomblin That should be diff <(man uniq) <(man guniq) To answer saua's question from the comments: Bash turns <(...) into a named pipe, which the diff program sees as a file. So as far as diff knows, it's comparing two files. Try this: man uniq > uniq.man man guniq > guniq.man diff uniq.man guniq.man 来源: https://stackoverflow.com/questions/621789/comparing-macs-and-unix-manuals

Get man pages for driver functions

旧时模样 提交于 2019-12-07 15:44:41
问题 I am new to linux device drivers. I would like to know if there are man pages for the driver functions like register_chrdev. If yes, then how do I get them? Is there a package that I can download using apt-get? 回答1: The Linux kernel pages in the man program reside in section 9, which is (un)fortunately a non-standard section. See this. Popular Linux distributions like Ubuntu don't distribute the man pages that fall under this section through their software channels (?). They're still

What tools are available to edit manpages, i.e. GUI WYSIWYG editors (any platform)

蓝咒 提交于 2019-12-07 02:30:26
问题 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 format would also be fine. 回答1: NroffEdit was originally created for writing RFCs, but since they're, like man pages, in troff format, I guess you could use it for that. 回答2: You want ronn. Ronn builds manuals. It converts simple, human readable textfiles to roff for terminal display, and also to

Managing Emacs *Man* buffer location?

ⅰ亾dé卋堺 提交于 2019-12-06 11:21:50
Emacs behaviour which recently[*] started to irritate me: I edit the file, and need some help M-x man something emacs politely splits frame into two windows and opens manpage there, I see both source and man, great while reading man I find that I need to followup further, so I M-x man anothertopic emacs opens new manpage in window previously occupied by my source, I see two manpages on the screen and can't edit anymore (until I switch buffer) Is it possible to make Man prefer reuse existing man window? Adapting display-buffer-reuse-window to create display-buffer-reuse-major-mode-window , we

Get man pages for driver functions

一世执手 提交于 2019-12-05 20:19:33
I am new to linux device drivers. I would like to know if there are man pages for the driver functions like register_chrdev. If yes, then how do I get them? Is there a package that I can download using apt-get? The Linux kernel pages in the man program reside in section 9, which is (un)fortunately a non-standard section. See this . Popular Linux distributions like Ubuntu don't distribute the man pages that fall under this section through their software channels (?). They're still available, for example, Debian provides one . There are also online versions of the man pages. Actually the kernel

What tools are available to edit manpages, i.e. GUI WYSIWYG editors (any platform)

吃可爱长大的小学妹 提交于 2019-12-05 05:50:42
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 format would also be fine. NroffEdit was originally created for writing RFCs, but since they're, like man pages, in troff format , I guess you could use it for that. You want ronn . Ronn builds manuals. It converts simple, human readable textfiles to roff for terminal display, and also to HTML for the web. It's not WYSIWYG, but it does let you export normal text files. Since nroff doesn't support

Is there any common lisp docs like linux man? [closed]

本秂侑毒 提交于 2019-12-04 22:55:29
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I am a newbie for emacs and common lisp. I am now using emacs and slime to learn P.Graham “ANSI Common LISP”. However, when I meet something that I don't konw, I can not easily get some useful info like linux man. Is there any common lisp docs like linux man? 回答1: Common Lisp HyperSpec describes the ANSI Common

How to fix “No manual entry for gcc”?

空扰寡人 提交于 2019-12-04 09:30:02
问题 I somehow lost the man pages for gcc and g++. I'm not sure where/what to look for. I'm pretty sure the man pages used to work some time ago. It also works on my Mac at work where I use roughly the same setup. Could it be a problem with brew? Or is it a bug in the XCode Command Line Tools? Update: I just tried to re-install the XCode Command Line Tools. No luck. ~ ✓ man gcc No manual entry for gcc ~ ✗ which gcc /usr/bin/gcc ~ ✓ gcc --version Configured with: --prefix=/Applications/Xcode.app

How do you view a man page you just created?

假如想象 提交于 2019-12-04 05:19:27
问题 Suppose I have a man page, which I just wrote and passed through nroff -man , called command.1 How do I view it with man now? I looked though the man man page, and maybe I missed it, but I didn't see anything. I also searched google. Is it only possible to view using nroff -man ? Is there a command line option for man to view that specific file? Is it necessary to modify MANPATH ? 回答1: Put the command.1 man page in a new folder called man1 . Then, assuming you're in the folder containing the