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

429 lines, 305 significant
1---
2default_highlighter: oils-sh
3---
4
5Oils Error Catalog, With Hints
6==================
7
8This doc lists errors from Oils (both [OSH]($xref) and [YSH]($xref)), with
9hints to help you fix them.
10
11Each error is associated with a code like `OILS-ERR-42`, a string that search
12engines should find.
13
14<!--
15Later, we could have a URL shortener, like https://oils.err/42
16-->
17
18<div id="toc">
19</div>
20
21## How to Contribute
22
23If you see an error that you don't understand:
24
251. Ask a question on `#oil-help` on [Zulip]($xref:zulip). What's the problem,
26 and what's the solution?
271. Then `grep` the source code for the confusing error message. Tag it with a
28 string like `OILS-ERR-43`, picking a new number according to the conventions
29 below.
301. Add a tagged section below, with hints and explanations.
31 - Quote the error message. You may want copy and paste from the output of
32 `test/{parse,runtime,ysh-parse,ysh-runtime}-errors.sh`. Add an HTML
33 comment `<!-- -->` about that.
34 - Link to relevant sections in the [**Oils Reference**](ref/index.html).
351. Optionally, add your name to the acknowledgements list at the end of this
36 doc.
37
38Note that error messages are **hard** to write, because a single error could
39result from many different user **intentions**!
40
41### To Preview this Doc
42
43Right now I use this command:
44
45 build/doc.sh split-and-render doc/error-catalog.md
46
47Then paste this into your browser:
48
49 file:///home/andy/git/oilshell/oil/_release/VERSION/doc/error-catalog.html
50
51(Replace with your home dir)
52
53## Parse Errors - Rejected Input
54
55Roughly speaking, a parse error means that text input was **rejected**, so the
56shell didn't try to do anything.
57
58Examples:
59
60 echo ) # Shell syntax error
61
62 type -z # -z flag not accepted
63
64These error codes start at `10`.
65
66### OILS-ERR-10
67
68<!--
69Generated with:
70test/ysh-parse-errors.sh test-func-var-checker
71-->
72
73```
74 setvar x = true
75 ^
76[ -c flag ]:3: setvar couldn't find matching 'var x' (OILS-ERR-10)
77```
78
79- Did you forget to declare the name with the [var](ref/chap-cmd-lang.html#var)
80 keyword?
81- Did you mean to use the [setglobal](ref/chap-cmd-lang.html#setglobal)
82 keyword?
83
84Related help topics:
85
86- [setvar](ref/chap-cmd-lang.html#setvar)
87
88### OILS-ERR-11
89
90<!--
91Generated with:
92test/ysh-parse-errors.sh ysh_c_strings (this may move)
93-->
94
95```
96 echo $'\z'
97 ^
98[ -c flag ]:1: Invalid char escape in C-style string literal (OILS-ERR-11)
99```
100
101- Did you mean `$'\\z'`? Backslashes must be escaped in `$''` and `u''` and
102 `b''` strings.
103- Did you mean something like `$'\n'`? Only valid escapes are accepted in YSH.
104
105Related help topics:
106
107- [osh-string](ref/chap-word-lang.html#osh-string) (word language)
108- [ysh-string](ref/chap-expr-lang.html#ysh-string) (expression language)
109
110### OILS-ERR-12
111
112<!--
113Generated with:
114test/ysh-parse-errors.sh ysh_dq_strings (this may move)
115-->
116
117```
118 echo "\z"
119 ^
120[ -c flag ]:1: Invalid char escape in double quoted string (OILS-ERR-12)
121```
122
123- Did you mean `"\\z"`? Backslashes must be escaped in double-quoted strings.
124- Did you mean something like `"\$"`? Only valid escapes are accepted in YSH.
125- Did you to use single quotes, like `u'\n'` rather than `u"\n"`?
126
127Related help topics:
128
129- [osh-string](ref/chap-word-lang.html#osh-string) (word language)
130- [ysh-string](ref/chap-expr-lang.html#ysh-string) (expression language)
131
132### OILS-ERR-13
133
134<!--
135Generated with:
136test/ysh-parse-errors.sh ysh_bare_words (this may move)
137-->
138
139```
140 echo \z
141 ^~
142[ -c flag ]:1: Invalid char escape in unquoted word (OILS-ERR-13)
143```
144
145- Did you mean `\\z`? Backslashes must be escaped in unquoted words.
146- Did you mean something like `\$`? Only valid escapes are accepted in YSH.
147
148### OILS-ERR-14
149
150<!--
151Generated with:
152test/ysh-parse-errors.sh test-parse-dparen
153-->
154
155```
156 if ((1 > 0 && 43 > 42)); then echo yes; fi
157 ^~
158[ -c flag ]:1: Bash (( not allowed in YSH (parse_dparen, see OILS-ERR-14 for wart)
159```
160
161Two likely causes:
162
163- Do you need to rewrite bash arithmetic as YSH arithmetic (which is
164 Python-like)?
165- Do you need to work around an [unfortunate wart](warts.html#two-left-parens-should-be-separated-by-space) in YSH?
166
167Examples:
168
169 if (1 > 0 and 43 > 42) { # YSH-style
170 echo yes
171 }
172
173 if ( (x + 1) < n) { # space between ( ( avoids ((
174 echo yes
175 }
176
177### OILS-ERR-15
178
179Incorrect:
180
181 # Expression mode
182 if (a || b) {
183 echo yes
184 }
185
186 # Command mode
187 if test --dir a or test --dir b { ... }
188
189Correct:
190
191 # Expression mode
192 if (a or b) {
193 echo yes
194 }
195
196 # Command mode
197 if test --dir a || test --dir b { ... }
198
199In general, code within parentheses `()` is parsed as Python-like expressions
200-- referred to as [expression mode](command-vs-expression-mode.html). The
201standard boolean operators are written as `a and b`, `a or b` and `not a`.
202
203This differs from [command mode](command-vs-expression-mode.html) which uses
204`||` for "OR", `&&` for "AND" and `!` for "NOT".
205
206### OILS-ERR-16
207
208```
209 for x in (1..5) {
210 ^~
211[ -c flag ]:1: Use 1..<5 for half-open range, or 1..=5 for closed range (OILS-ERR-16)
212```
213
214There are two types of [range syntax](ref/chap-expr-lang#range). The `..<`
215syntax is for half-open ranges and `..=` is for closed ranges:
216
217 for i in (0..<3) {
218 echo $i
219 }
220 => 0
221 => 1
222 => 2
223
224 for i in (0..=3) {
225 echo $i
226 }
227 => 0
228 => 1
229 => 2
230 => 3
231
232## Runtime Errors - Traditional Shell
233
234These errors may occur in shells like [bash]($xref) and [zsh]($xref).
235
236They're numbered starting from `100`. (If we have more than 90 parse errors,
237we can start a new section, like `300`.)
238
239### OILS-ERR-100
240
241<!--
242Generated with:
243test/runtime-errors.sh test-command-not-found
244-->
245
246```
247 findz
248 ^~~~~
249[ -c flag ]:1: 'findz' not found (OILS-ERR-100)
250```
251
252- Did you misspell a command name?
253- Did you misspell a shell function or a YSH `proc`?
254- Is the file in your `$PATH`? The `PATH` variable is a colon-separated list
255 of directories, where executable files may live.
256- Is `findz` file executable bit set? (`chmod +x`)
257
258### OILS-ERR-101
259
260<!--
261Generated with:
262test/runtime-errors.sh test-assoc-array
263-->
264
265Let's look at **three** instances of this error.
266
267```
268 declare -A assoc; assoc[x]=1
269 ^~~~~~
270[ -c flag ]:1: fatal: Assoc array keys must be strings: $x 'x' "$x" etc. (OILS-ERR-101)
271```
272
273- Is `x` a string? Then add quotes: `assoc['x']=1`
274- Is `x` a variable? Then write: `assoc[$x]=1`
275
276---
277
278Same idea here:
279
280```
281 declare -A assoc; echo ${assoc[x]}
282 ^
283[ -c flag ]:1: fatal: Assoc array keys must be strings: $x 'x' "$x" etc. (OILS-ERR-101)
284```
285
286- Is `x` a string? Then add quotes: `${assoc['x']}`
287- Is `x` a variable? Then write: `${assoc[$x]}`
288
289---
290
291The third example is **tricky** because `unset` takes a **string**. There's an
292extra level of parsing, which:
293
294- Implies an extra level of quoting
295- Causes OSH to display the following **nested** error message
296
297```
298 assoc[k]
299 ^
300[ dynamic LHS word at line 1 of [ -c flag ] ]:1
301
302 declare -A assoc; key=k; unset "assoc[$key]"
303 ^
304[ -c flag ]:1: fatal: Assoc array keys must be strings: $x 'x' "$x" etc. (OILS-ERR-101)
305```
306
307To fix it, consider using **single quotes**:
308
309 unset 'assoc[$key]'
310
311---
312
313- This is the error in [Parsing Bash is
314 Undecidable](https://www.oilshell.org/blog/2016/10/20.html) (2016)
315- Also mentioned in [Known Differences](known-differences.html)
316
317
318## Runtime Errors - Oils and YSH
319
320These errors don't occur in shells like [bash]($xref) and [zsh]($xref).
321
322They may involve Python-like **expressions** and **typed data**.
323
324They're numbered starting from `200`.
325
326### OILS-ERR-200
327
328<!--
329Generated with:
330test/runtime-errors.sh test-external_cmd_typed_args
331-->
332
333```
334 cat ("myfile")
335 ^
336[ -c flag ]:1: fatal: 'cat' appears to be external. External commands don't accept typed args (OILS-ERR-200)
337```
338
339- Builtin commands and user-defined procs may accept [typed
340 args](ref/chap-cmd-lang.html#typed-arg), but external commands never do.
341- Did you misspell a [YSH proc](ref/chap-cmd-lang.html#proc-def)? If a name is
342 not found, YSH assumes it's an external command.
343- Did you forget to source a file that contains the proc or shell function you
344 wanted to run?
345
346### OILS-ERR-201
347
348<!--
349Generated with:
350test/runtime-errors.sh test-arith_ops_str
351-->
352
353```
354 = "age: " + "100"
355 ^
356[ -c flag ]:1: fatal: Binary operator expected numbers, got Str and Str (OILS-ERR-201)
357
358 = 100 + myvar
359 ^
360[ -c flag ]:2: fatal: Binary operator expected numbers, got Int and Str (OILS-ERR-201)
361```
362
363- Did you mean to use `++` to concatenate strings/lists?
364- The arithmetic operators [can coerce string operands to
365 numbers](ref/chap-expr-lang.html#ysh-arith). However, if you are operating on
366 user provided input, it may be a better idea to first parse that input with
367 [`int()`](ref/chap-builtin-func.html#int) or
368 [`float()`](ref/chap-builtin-func.html#float).
369
370### OILS-ERR-202
371
372<!--
373Generated with:
374test/ysh-runtime-errors.sh test-float-equality
375-->
376
377```
378 pp (42.0 === x)
379 ^~~
380[ -c flag ]:3: fatal: Equality isn't defined on Float values (OILS-ERR-202)
381```
382
383Floating point numbers shouldn't be tested for equality. Alternatives:
384
385 = abs(42.0 - x) < 0.1
386 = floatEquals(42.0, x)
387
388### OILS-ERR-203
389
390<!--
391Generated with:
392test/ysh-runtime-errors.sh test-cannot-stringify-list
393-->
394
395```
396 var mylist = [1,2,3]; write $[mylist]
397 ^~
398[ -c flag ]:1: fatal: Expr sub got a List, which can't be stringified (OILS-ERR-203)
399```
400
401- Did you mean to use `@mylist` instead of `$mylist`?
402- Did you mean to use `@[myfunc()]` instead of `$[myfunc()]`?
403- Did you mean `$[join(mylist)]`?
404
405Or:
406
407- Do you have an element that can't be stringified in a list, like `['good',
408 {bad: true}]`?
409
410
411<!-- TODO -->
412
413
414## Appendix
415
416### Kinds of Errors from Oils
417
418- Runtime errors (status 1) - the shell tried to do something, but failed.
419 - Example: `echo hi > /does/not/exist`
420- Parse errors and builtin usage errors (status 2) - input rejected, so the
421 shell didn't try to do anything.
422- Uncaught I/O errors (status 2)
423- Expression errors (status 3)
424- User errors from the `error` builtin (status 10 is default)
425
426### Contributors
427
428(If you updated this doc, feel free to add your name to the end of this list.)
429