Linux commands related to document

2022. 4. 8. 01:00Programing Language/Linux

○ apropos : 검색어와 관련있는 명령어를 설명과 함께 출력하는 명령어

#apropos[검색어]

#apropos system | grep^system -> system으로 시작하는 명령어 검색

 

○ help : 해당 명령어를 사용하기 위한 도움말을 출력하는 명령어[상세도움말]

#명령어 --help

cat 명령에 대한 각각의 옵션들의 정의 와 예시들이 나와있음

○ man : 원하는 명령어의 사용방법을 확인하는 명령어[일종의 메뉴얼]

#man [옵션][세션]명령어

[확실히 help보다 세세한 내용들이 들어있음]

옵션

-k : 해당 키워드로 발견되는 모든 메뉴얼의 내용을 검색하여 보여줌

-f : 해당 키워드에 대한 완벽히 일치되는 메뉴얼 페이지에 대한 정보를 보여줌

-w : man 명령 실행 시에 호출되는 '메뉴얼 페이지' 파일의 위치를 보여줌[--path]

-s, -S : 특정 section을 지정할 때 사용함[--sections=섹션번호]

'Programing Language > Linux' 카테고리의 다른 글

Linux commands related to process  (0) 2022.04.09
Linux commands related to network  (0) 2022.04.08
Linux commands related to search  (0) 2022.04.08
File system of linux commands  (0) 2022.04.07
Permission of linux commands  (0) 2022.04.07