0

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
    It's usually `man command` (`man bash` for instance). It's _usually_ installed, but some stripped down servers don't have mandb/manpages – Wrikken Nov 26 '14 at 00:41
  • 2
    The "bash man page" is the man page **for bash itself**, not for commands outside of / not built into bash. – Charles Duffy Nov 26 '14 at 00:46

2 Answers2

2

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.

Dinesh
  • 4,437
  • 5
  • 40
  • 77
1

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

davmac
  • 20,150
  • 1
  • 40
  • 68