OILS / doc / faq-doc.md View on Github | oilshell.org

51 lines, 33 significant
1FAQ on Documentation
2====================
3
4Start here if you can't find something!
5
6<div id="toc">
7</div>
8
9## How are the docs organized?
10
11Every release is published at [/release/$VERSION/](../index.html). As of 2024,
12it links to 2 starting points:
13
141. [**Published Docs**](published.html) shows docs that are ready to read.
15 Examples:
16 - [Simple Word Evaluation in Unix Shell](simple-word-eval.html)
17 - [YSH Fixes Shell's Error Handling](error-handling.html)
181. [**All Docs**](index.html) shows all docs.
19
20The **Oils Reference** at [/release/$VERSION/doc/ref/](ref/index.html) is still
21in progress.
22
23Outside of the release tree:
24
25- [The blog](https://www.oilshell.org/blog/) has useful background info. Older
26 posts are more likely to have incorrect information.
27- [The home page](https://www.oilshell.org/) has links to docs for new users.
28
29## Where do I find ...
30
31### A list of all shell builtins?
32
33See the [Chapter on Builtin Commands](ref/chap-builtin-cmd.html) in the reference.
34
35### A list of all YSH functions?
36
37See the [Chapter on Builtin Functions](ref/chap-builtin-func.html) in the reference.
38
39### A list of all operators?
40
41They are split between the "sublanguages" of OSH and YSH:
42
43- [Expression Language](ref/chap-expr-lang.html) for the YSH expression
44 language
45- [Word Language](ref/chap-word-lang.html) for `${x}` and so forth
46- [Mini Languages](ref/chap-mini-lang.html) for other shell sublanguages.
47
48## I still can't find what I'm looking for.
49
50Please send feedback on Github or Zulip: [Where To Send
51Feedback](https://github.com/oilshell/oil/wiki/Where-To-Send-Feedback).