xref
: /
freebsd
/
bin
/
sh
/
tests
/
builtins
/
read10.0
(revision 28f6c2f292806bf31230a959bc4b19d7081669a7)
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