Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ man pages in Ubuntu

In Ubuntu linux I can't get any man pages for C++ keywords. Is there some kind of package I can install to fix this?

like image 400
neuromancer Avatar asked May 22 '10 08:05

neuromancer


People also ask

How do I access man pages in Ubuntu?

Search through Ubuntu Manpages at: http://manpages.ubuntu.com/. Also, some tools have more extensive manuals in info pages (so info grep ); and some commands that are an internal part of the bash shell rather than being separate external files are documented on help pages (for example: help echo ).

How do I see all man pages in Linux?

To search a specific man page section, use the -s option with the man command and the -k or -K option. Note - Keywords are contained within double quotation marks.


1 Answers

sudo apt-get install manpages-dev glibc-doc

Look here too for STL.

like image 131
nc3b Avatar answered Sep 27 '22 21:09

nc3b