ubuntu c++ 맨페이지 설치
프로그래밍/c,c++ 2021. 11. 30. 17:07반응형
터미널에서 간단히 c++ std api 내용 확인 할때
맨페이지 없는 상태
$ man std::lock_guard
No manual entry for std::lock_guard
맨페이지 설치
$ sudo apt install libstdc++-10-doc
설치된 맨페이지 확인
$ man std::lock_guard | cat
std::lock_guard< _Mutex >(3cxx) std::lock_guard< _Mutex >(3cxx)
NAME
std::lock_guard< _Mutex > - A simple scoped lock type.
......
반응형