man (Linux command)

On April 20, 2009, in linux, linux commands, by mahesh
0


man – Format and display the ‘MAN’ual pages.

Summary

Most of the commands are comes with a specially formatted manual,
which explains “how to use the command, option list, etc..”.
‘man’ command is used to view those manual page.

Man pages are sorted in categories, as mentioned below:

1. Executable programs / Shell commands
2. System calls
3. Library calls
4. Special files
5. Config file formats and conventions
6. Games
7. Miscellaneous
8. System administration commands
9. Non-standard

Examples

$ man man  #Display the manual page of the man command

$ man ls  #Display the manual page of the ls command

$ man printf  #Display printf command man page.

Share
Tagged with:
 

id (Linux command)

On April 20, 2009, in linux, linux commands, by mahesh
0


id – print real and effective UIDs and GIDs

Summery
id command is one of the basic unix commands, and it servers a very simple purpose of confirming the identity of a specified Unix user.

Simplest way to use the id command
All you do is just type id in your command line prompt, and it then gets back to you with confirmations of your own user id, group id, and a list of other groups you’re a member of:

ubuntu$ id
uid=1000(greys) gid=113(admin) groups=33(www-data),113(admin)

Share
Tagged with: