LiveFire Labs: Online UNIX Training with Hands-on Internet Lab


"Taking a LiveFire Labs' course is an excellent way to learn Linux/Unix. The lessons are well thought out, the material is explained thoroughly, and you get to perform exercises on a real Linux/Unix box. It was money well spent."

Ray S.
Pembrook Pines, Florida



LiveFire Labs' UNIX and Linux Operating System Fundamentals course was very enjoyable. Although I regularly used UNIX systems for 16 years, I haven't done so since 2000. This course was a great refresher. The exercises were fun and helped me gain a real feel for working with UNIX/Linux OS. Thanks very much!"

Ming Sabourin
Senior Technical Writer
Nuance Communications, Inc.
Montréal, Canada

Read more student testimonials...




Receive UNIX Tips, Tricks, and Shell Scripts by Email







Custom Search



LiveFire Labs' UNIX Tip, Trick, or Shell Script of the Week

Basic UNIX Commands for Beginners: Searching the man pages for Keywords

There are a number of shell variables, both built-in and user-defined

Detailed information about UNIX user commands, UNIX system administration commands, shells, important files, and much more can be found in the pages of the online system manual, better known as the man pages.  Man pages are accessed by using the man command and the name of a page for an argument.  For example, the following command will display the man page for the Korn shell:

# man ksh

ksh, on most systems, is the name of the Korn shell's executable file.

[ If you are new to UNIX and need an overview of important UNIX commands and concepts, check out our Basic UNIX Commands and Concepts Tutorial for Beginners ]

This method of displaying information from the man pages works fine until you find yourself in a situation where you have a basic idea of what you are looking for, but do not know the name of the relevant man page(s).  If the system you are using is configured to support it, you can search the descriptions of the man pages by adding the -k option and a search string to the man command:

# man -k <search_string>

Doing so will display a list of pages that contain your search string.

If you didn't know that "ksh" was the name of the man page for the Korn shell, you could use the following command to return a list of man pages that contain the string "korn" in their description:

# man -k korn
ksh      ksh (1)      - KornShell, a standard/restricted command and programming language
rksh     ksh (1)      - KornShell, a standard/restricted command and programming language

Each result includes the command or keyword, the name of the man page, the section of the system manual that contains the page, and the man page's description.  If one of the results is similar to what you are looking for, you can view the entire man page using the man command and the name of the page.