La OS X Man Pages elenca tutte le funzioni integrate. Ma dove posso trovare la documentazione di un particolare?
Per esempio, il comando fc
, su ubuntu posso ottenere il suo manuale da:
> 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.
....
Un altro esempio è l'espressione if
, su ubuntu:
> help if
if: if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi
Execute commands based on conditional.
...
Cosa mi manca qui?