![apropos 명령과 함께 나열된 각 명령 뒤의 숫자는 무엇을 의미합니까? (1-8, pm, ssl 등) [중복]](https://linux55.com/image/176868/apropos%20%EB%AA%85%EB%A0%B9%EA%B3%BC%20%ED%95%A8%EA%BB%98%20%EB%82%98%EC%97%B4%EB%90%9C%20%EA%B0%81%20%EB%AA%85%EB%A0%B9%20%EB%92%A4%EC%9D%98%20%EC%88%AB%EC%9E%90%EB%8A%94%20%EB%AC%B4%EC%97%87%EC%9D%84%20%EC%9D%98%EB%AF%B8%ED%95%A9%EB%8B%88%EA%B9%8C%3F%20(1-8%2C%20pm%2C%20ssl%20%EB%93%B1)%20%5B%EC%A4%91%EB%B3%B5%5D.png)
나는 에 관한 기사를 완성하려고 노력 중입니다.적절한 순서. 명령 을 실행하면 apropos
다음과 같은 내용이 나열됩니다.
fahim@Fahim:~$ apropos delete
argz_delete (3) - functions to handle an argz list
crlutil (1) - List, generate, modify, or delete CRLs within the NSS ...
DELETE (7) - delete rows of a table
delete_module (2) - unload a kernel module
flatpak-remote-delete (1) - Delete a remote repository
git-branch (1) - List, create, or delete branches
git-replace (1) - Create, list, delete refs to replace objects
git-symbolic-ref (1) - Read, modify and delete symbolic refs
git-tag (1) - Create, list, delete or verify a tag object signed wit...
groupdel (8) - delete a group
나열된 각 명령 뒤에는 괄호 안에 숫자가 있습니다. 이 숫자는 무엇을 의미하나요? 그것은 무엇을 위해 사용됩니까?
편집: 매뉴얼 페이지에서 답변을 보았습니다. 모든 숫자가 1에서 8 사이인지 확인하기 위해 이 명령을 시도했는데 일부 결과는 다음과 같습니다.
fahim@Fahim:~$ apropos a
YAML::LibYAML (3pm) - Perl YAML Serialization using XS and libyaml
x509 (1ssl) - Certificate display and signing utility
x509v3_config (5ssl) - X509 V3 certificate extension configuration format
X25519 (7ssl) - EVP_PKEY X25519 and X448 support
숫자에 대한 대답은 의미가 있지만 오후 3시, 1ssl, 5ssl, 7ssl은 어떻습니까?
답변1
다음 표는 설명서 장 번호와 포함된 페이지 유형을 보여줍니다.
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions, e.g. /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conventions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
"man man" 명령 실행에서 위의 텍스트를 제거했습니다.