I do
man set
but that just gets me this:
How can I get to here: http://ss64.com/bash/set.html from within bash?
I do
man set
but that just gets me this:
How can I get to here: http://ss64.com/bash/set.html from within bash?
bash
built-ins don't have their own man pages; you need to use bash
's built-in help system:
$ help set
Use man bash
, scroll down to the SHELL BUILTIN COMMANDS
section, then scroll down to the set
command.