C++ man pages in Ubuntu

后端 未结 5 1688
难免孤独
难免孤独 2021-02-06 08:29

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?

相关标签:
5条回答
  • 2021-02-06 08:51

    check out this project: https://github.com/Aitjcize/cppman Which generates manpages from cplusplus.com

    0 讨论(0)
  • 2021-02-06 08:57

    The libstdc++6-4.4-doc will install the man pages for STL too, not only the HTML doc. The manpages-posix-dev package is also really good to have.

    0 讨论(0)
  • 2021-02-06 08:58

    You must install manpages-dev package :

    $ sudo apt-get install manpages-dev
    
    0 讨论(0)
  • 2021-02-06 09:00

    You could also consider installing libstdc++6-4.4-doc, which installs the full C++ library documentation in HTML format, generated from the doxygen comments (you can find it in /usr/share/doc/libstdc++6-4.4-doc/libstdc++/html/index.html, and I think that scrollkeeper indexes it). Remember to install the updated package when the installed g++ version changes.

    0 讨论(0)
  • 2021-02-06 09:07
    sudo apt-get install manpages-dev glibc-doc
    

    Look here too for STL.

    0 讨论(0)
提交回复
热议问题