docs: update

This commit is contained in:
Dylan Araps 2019-10-16 10:57:29 +03:00
parent 9e0981752f
commit 6485d201ac
No known key found for this signature in database
GPG key ID: 46D62DD9F1DE636E

View file

@ -1018,7 +1018,7 @@ shift
# Solution (shift on its own is really 'shift 1').
# This uses 'shift 0' if there are no arguments and
# 'shift 1' if there are.
shift "$(($# > 0 ? 1 : 0))"
shift "$(($# ? 1 : 0))"
```
## `read` with no given variable crashes `dash`.