| 6 | | * Read the on-line manual pages (accessed via the linux command 'man'). |
| | 6 | == Manual pages == |
| | 7 | |
| | 8 | An important source of written information is the UNIX manual pages. These are specially formatted text files that are conveniently viewed using the man-program. To get information about a particular command type: |
| | 9 | |
| | 10 | man <command> |
| | 11 | |
| | 12 | Very useful is the -k option which will print out one-line summaries on any of the given keywords: |
| | 13 | |
| | 14 | man -k <keyword> |
| | 15 | |
| | 16 | man man |
| | 17 | |
| | 18 | gives you information about the man program itself. If you prefer a point-and-click interface you might want to try xman. Beware that these manual pages sometimes can be rather obscure (the standard example being the manual pages to the command find). But they usually adhere to a structure with first a description of the command, then a listing of the command line options and an explanation of the usage (which usually merits repeated reading), a list of environment variables supported by the program and finally some examples of use. |