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