OILS / doc / ref / toc-osh.md View on Github | oilshell.org

230 lines, 197 significant
1---
2title: OSH Table of Contents
3all_docs_url: ..
4css_files: ../../web/base.css ../../web/manual.css ../../web/ref-index.css
5preserve_anchor_case: yes
6---
7
8<div class="doc-ref-header">
9
10[Oils Reference](index.html) &mdash;
11**OSH Table of Contents** | [YSH](toc-ysh.html) | [Data Notation](toc-data.html)
12
13</div>
14
15[OSH]($xref) is a POSIX- and [bash]($xref)-compatible shell.
16
17<!--
18<div class="custom-toc">
19
20[OSH Types](#type-method) <br/>
21[Builtin Commands](#builtin-cmd) <br/>
22[Front End](#front-end) <br/>
23[Command Language](#cmd-lang) <br/>
24[OSH Assignment](#osh-assign) <br/>
25[Word Language](#word-lang) <br/>
26[Mini Languages](#mini-lang) <br/>
27[Shell Options](#option) <br/>
28[Special Variables](#special-var) <br/>
29[Plugins and Hooks](#plugin) <br/>
30
31[type-method](#type-method) &nbsp;
32[builtin-cmd](#builtin-cmd) &nbsp;
33[front-end](#front-end) &nbsp;
34[cmd-lang](#cmd-lang) &nbsp;
35[osh-assign](#osh-assign) &nbsp;
36[word-lang](#word-lang) &nbsp;
37[mini-lang](#mini-lang) &nbsp;
38[option](#option) &nbsp;
39[special-var](#special-var) &nbsp;
40[plugin](#plugin)
41
42</div>
43-->
44
45<h2 id="type-method">
46 OSH Types <a class="group-link" href="chap-type-method.html">type-method</a>
47</h2>
48
49```chapter-links-type-method
50 [OSH] BashArray BashAssoc
51```
52
53<h2 id="builtin-cmd">
54 Builtin Commands <a class="group-link" href="chap-builtin-cmd.html">builtin-cmd</a>
55</h2>
56
57```chapter-links-builtin-cmd
58 [I/O] read echo printf
59 readarray mapfile
60 [Run Code] source . eval trap
61 [Set Options] set shopt
62 [Working Dir] cd pwd pushd popd dirs
63 [Completion] complete compgen compopt compadjust compexport
64 [Shell Process] exec X logout
65 umask ulimit times
66 [Child Process] jobs wait
67 fg X bg X kill X disown
68 [External] test [ getopts
69 [Introspection] help hash cmd/type X caller
70 [Word Lookup] command builtin
71 [Interactive] alias unalias history X fc X bind
72X [Unsupported] enable
73```
74
75<h2 id="stdlib">
76 Standard Library <a class="group-link" href="chap-stdlib.html">stdlib</a>
77</h2>
78
79```chapter-links-stdlib
80 [two] log die
81 [no-quotes] nq-run nq-capture nq-capture-2 nq-assert
82 [bash-strict]
83 [task-five]
84```
85
86<h2 id="front-end">
87 Front End <a class="group-link" href="chap-front-end.html">front-end</a>
88</h2>
89
90```chapter-links-front-end
91 [Usage] oils-usage osh-usage config
92 startup line-editing exit-codes
93 [Lexing] comment # line-continuation \ ascii-whitespace [ \t\r\n]
94```
95
96<h2 id="cmd-lang">
97 Command Language <a class="group-link" href="chap-cmd-lang.html">cmd-lang</a>
98</h2>
99
100```chapter-links-cmd-lang
101 [Commands] simple-command semicolon ;
102 [Conditional] case if dbracket [[
103 true false colon :
104 bang ! and && or ||
105 [Iteration] while until for for-expr-sh ((
106 [Control Flow] break continue return exit
107 [Grouping] sh-func sh-block { subshell (
108 [Concurrency] pipe | X pipe-amp |& ampersand &
109 [Redirects] redir-file > >> >| < <> not impl: &>
110 redir-desc >& <&
111 here-doc << <<- <<<
112 [Other Command] dparen (( time X coproc X select
113```
114
115<h2 id="osh-assign">
116 Assignments and Expressions <a class="group-link" href="chap-osh-assign.html">osh-assign</a>
117</h2>
118
119```chapter-links-osh-assign
120 [Literals] sh-array array=(a b c) array[1]=B "${a[@]}"
121 sh-assoc assoc=(['a']=1 ['b']=2) assoc['x']=b
122 [Operators] sh-assign str='xyz'
123 sh-append str+='abc'
124 [Builtins] local readonly export unset shift
125 declare typeset X let
126```
127
128<h2 id="word-lang">
129 Word Language <a class="group-link" href="chap-word-lang.html">word-lang</a>
130</h2>
131
132<!-- linkify_stop_col is 33 -->
133
134```chapter-links-word-lang_33
135 [Quotes] osh-string 'abc' $'line\n' "$var"
136 [Substitutions] command-sub $(command) `command`
137 var-sub ${var} $0 $9
138 arith-sub $((1 + 2))
139 tilde-sub ~/src
140 proc-sub diff <(sort L.txt) <(sort R.txt)
141 [Var Ops] op-test ${x:-default}
142 op-strip ${x%%suffix} etc.
143 op-replace ${x//y/z}
144 op-index ${a[i+1}
145 op-slice ${a[@]:0:1}
146 op-format ${x@P}
147```
148
149<h2 id="mini-lang">
150 Other Mini Languages <a class="group-link" href="chap-mini-lang.html">mini-lang</a>
151</h2>
152
153<!-- linkify_stop_col is 33 -->
154
155```chapter-links-mini-lang_33
156 [Arithmetic] arith-context Where legacy arithmetic is allowed
157 sh-numbers 0xFF 0755 etc.
158 sh-arith 1 + 2*3 a *= 2
159 sh-logical !a && b
160 sh-bitwise ~a ^ b
161 [Boolean] bool-expr [[ ! $x && $y || $z ]]
162 test ! $x -a $y -o $z
163 bool-infix $a -nt $b $x == $y
164 bool-path -d /etc
165 bool-str -n foo -z ''
166 bool-other -o errexit -v name[index]
167 [Patterns] glob-pat *.py
168 extglob ,(*.py|*.sh)
169 regex [[ foo =~ [a-z]+ ]]
170 [Other Sublang] braces {alice,bob}@example.com
171 histsub !$ !! !n
172 char-escapes \t \c \x00 \u03bc
173```
174
175<h2 id="option">
176 Global Shell Options <a class="group-link" href="chap-option.html">option</a>
177</h2>
178
179<!-- linkify_stop_col is 20 since we only want section links -->
180
181```chapter-links-option_22
182 [Errors] nounset -u errexit -e inherit_errexit pipefail
183 [Globbing] noglob -f nullglob failglob X dotglob
184 dashglob (true)
185 [Debugging] xtrace X verbose X extdebug
186 [Interactive] emacs vi
187 [Other POSIX] X noclobber
188 [Compat] eval_unsafe_arith ignore_flags_not_impl
189```
190
191<h2 id="special-var">
192 Special Variables <a class="group-link" href="chap-special-var.html">special-var</a>
193</h2>
194
195```chapter-links-special-var
196 [POSIX Special] $@ $* $# $? $- $$ $! $0 $9
197 [Shell Vars] IFS X LANG X GLOBIGNORE
198 [Shell Options] SHELLOPTS X BASHOPTS
199 [Other Env] HOME PATH
200 [Other Special] BASH_REMATCH @PIPESTATUS
201 [Platform] HOSTNAME OSTYPE
202 [Call Stack] @BASH_SOURCE @FUNCNAME @BASH_LINENO
203 X @BASH_ARGV X @BASH_ARGC
204 [Tracing] LINENO
205 [Process State] UID EUID PPID X BASHPID
206X [Process Stack] BASH_SUBSHELL SHLVL
207X [Shell State] BASH_CMDS @DIRSTACK
208 [Completion] @COMP_WORDS COMP_CWORD COMP_LINE COMP_POINT
209 COMP_WORDBREAKS @COMPREPLY X COMP_KEY
210 X COMP_TYPE COMP_ARGV
211 [History] HISTFILE
212 [cd] PWD OLDPWD X CDPATH
213 [getopts] OPTIND OPTARG X OPTERR
214 [read] REPLY
215 [Functions] X RANDOM SECONDS
216 [Oils VM] OILS_VERSION LIB_OSH
217```
218
219<h2 id="plugin">
220 Plugins and Hooks <a class="group-link" href="chap-plugin.html">plugin</a>
221</h2>
222
223```chapter-links-plugin
224 [Signals] SIGTERM SIGINT SIGQUIT
225 SIGTTIN SIGTTOU SIGWINCH
226 [Traps] DEBUG ERR EXIT X RETURN
227 [Words] PS1 X PS2 X PS3 PS4
228 [Completion] complete
229 [Other Plugin] PROMPT_COMMAND X command_not_found
230```