리눅스를 사용하다 보면 모르겠거나 헷갈리는 명령어가 많이 나온다.
그럴 때 인터넷 검색을 사용해도 되지만 콘솔 안에서 해결하고 싶을 때,
help 혹은 man 명령어를 통해서 도움을 받을 수 있다.
현재 화면을 벗어나지 않고 명령어에 대한 간단한 메뉴얼을 보여준다.
mkdir 명령어에 대한 간략한 도움말을 얻고 싶을 때
ec2-user:~/environment $ mkdir --help
간략하게 메뉴얼이 나타난다.
Usage: mkdir [OPTION]... DIRECTORY...
Create the DIRECTORY(ies), if they do not already exist.
Mandatory arguments to long options are mandatory for short options too.
-m, --mode=MODE set file mode (as in chmod), not a=rwx - umask
-p, --parents no error if existing, make parent directories as needed
-v, --verbose print a message for each created directory
-Z set SELinux security context of each created directory
to the default type
--context[=CTX] like -Z, or if CTX is specified then set the SELinux
or SMACK security context to CTX
--help display this help and exit
--version output version information and exit
전용 페이지로 이동해서 명령어에 대한 상세한 메뉴얼을 보여준다.
ls 명령어에 대한 자세한 설명을 보고 싶을 때
ec2-user:~/environment $ man ls
대충 이런 결과를 얻을 수 있다.
LS(1) User Commands LS(1)
NAME
ls - list directory contents
SYNOPSIS
ls [OPTION]... [FILE]...
DESCRIPTION
List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.
Mandatory arguments to long options are mandatory for short options too.
-a, --all
do not ignore entries starting with .
-A, --almost-all
do not list implied . and ..
--author
with -l, print the author of each file
키보드 위, 아래 키를 이용해서 화면을 움직일 수 있다.
내용이 많기 때문에 필요한 부분을 찾아야 할 땐 검색 기능을 이용할 수 있다.
/ + 찾고자 하는 단어를 입력하면 된다.
/sort
필요한 정보를 얻었다면 알파벳 q를 입력해서 빠져나올 수 있다.