Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
42ba757d5e80ba25cc192939aa3525049f9e092f
/
.
/
shell
/
hush_test
/
hush-read
/
read_n.tests
blob: 12423ba6e9a15aa9edae94cbcfe78cc4a17de3fa [
file
] [
log
] [
blame
]
Denys Vlasenko
03dad22
2010-01-12 23:29:57 +0100
[
diff
] [
blame
]
1
echo
'test'
|
(
read reply
;
echo
"$reply"
)
2
echo
'test'
|
(
read
-
n
3
reply
;
echo
"$reply"
)
3
echo
'test'
|
(
read
-
n3 reply
;
echo
"$reply"
)