El OS X Páginas Man muestra la lista de todas las funciones integradas. Pero donde puedo encontrar la documentación de una en particular?
Por ejemplo, el comando fc
, en ubuntu puedo conseguir el manual:
> help fc
fc: fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]
Display or execute commands from the history list.
fc is used to list or edit and re-execute commands from the history list.
FIRST and LAST can be numbers specifying the range, or FIRST can be a
string, which means the most recent command beginning with that
string.
....
Otro ejemplo es el if
expresión, en ubuntu:
> help if
if: if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi
Execute commands based on conditional.
...
Lo que me estoy perdiendo aquí?