Accessing a Manual PageBring up a manual page by typing in the manual command man plus -k and the command or topic you wish to see the manual for. I.E.
man -k commandname.
This will bring up a list of possible man page names,command names and descriptions. Make a note of the man page and number.
Below is a sample of the all the manual pages available for the command man -k passwd.
|
chpasswd (8) - update password file in batch.
|
|
gpasswd (1) - administer the /etc/groupfile
|
|
mkpasswd (1) - generate new password, optionally apply it to user
|
| mkpasswd (8) - update passwd and group database files
|
| passwd (1) - update a user's authenication token(s)
|
| passwd (5) - password file
|
| userpasswd (1) -A graphical tool to allow users to change their passwords
|
In the table there are 7 files listed . To access one of these, type in the man command ,
then the manual page or section #, and the name of the command.
Like so:
man 5 passwd .
Home Table of Contents
Logging Out of UNIX
To ensure that nobody else accesses your files,make sure you log out of Unix when you are finished.
Logout by entering the logout command.
logout
Its that simple, just type in logout.
Some systems allow you to use the commands, quit,or exit,or ctrl-d.
Home Table of Contents