2012. 6. 13. 18:53

명령어의 설명을 간략하게 보여주는 명령어이다.
이 명령어는 특정 명령어가 어떤 명령어인가를 간단히 확인할때 사용하며 자세한 사용법과 설명은 man명령어를 이용해야한다.
명령어의 도움말을 확인하는 명령어의 일종으로서 man, which, whereis등의 명령어와 함께 알아두기 바란다.

사용형식

whatis keyword ...

사용예 #1

다음과 같이 명령어의 간단한 설명을 보고자 할 때에 whatis를 사용한다.

[root@host1 command]# whatis perl
perl                 (1)  - Practical Extraction and Report Language
[root@host1 command]#
[root@host1 command]# whatis find
find                 (1)  - search for files in a directory hierarchy
[root@host1 command]#
[root@host1 command]# whatis ls
ls                   (1)  - list directory contents
[root@host1 command]#

명령어의 보다 자세한 설명과 사용법을 원한다면 man page를 확인하기 바란다.

Posted by 몰라욧