What is the "bash man page" or "bash manual page" and where can I find it?

231 views Asked by At

What is the "bash man page" or "bash manual page" and where can I find it?

Does this just mean the stuff that comes up when you do:

command --help

Will that always work?

2

There are 2 answers

0
davmac On

Type man bash for the man(ual) page or, more usefully, info bash for the full manual.

0
Dinesh On

Here is an excellent GNU bash reference : http://www.gnu.org/software/bash/manual/bashref.html

In general you can do man bash to see the exact man page for your version of bash.