IT 1100 : Introduction to Operating Systems
- Finding Help
|
Command |
Sample Usage |
Description |
|||||||||
|
type
|
type foo
|
check if an alias name already exists as a command
|
|||||||||
|
alias
unalias
|
|
||||||||||
|
type |
|
||||||||||
|
PATH |
echo $PATH |
PATH is a system variable. displays the locations of the command (program) files |
|||||||||
|
which |
which cat |
find the location a particular program |
|||||||||
|
--help |
cat --help |
get help on a program (stored in /bin or /usr/bin) |
|||||||||
|
help |
help cd |
get help on built-in shell commands (like cd) |
|||||||||
|
man |
man cat |
see the technical manual page of a program |
|||||||||
|
info |
info cat |
see the human readable information page of a program |
|||||||||
|
whatis |
whatis ls |
see a brief description of a program |
|||||||||
|
apropos |
|
||||||||||
Last Updated 12/15/2017

