xref
: /
freebsd
/
bin
/
sh
/
tests
/
builtins
/
read10.0
(revision 35c87c070a2d04f06c56578b0a4b2e9c13f62be5)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
2
set -e
3
4
v=original_value
5
r=0
6
read v <
/dev/null
|| r=$?
7
[ "$r" -eq 1 ]
8
[ -z "$v" ]
9