Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
5f1b90b91af1076e6ba63afa7e4d7a3dbf841ce2
/
.
/
shell
/
hush_test
/
hush-misc
/
nommu3.tests
blob: ac82a6a115a30e39acb220ed02f20219e03caf3c [
file
] [
log
] [
blame
]
#!/bin/sh
func
()
{
while
read p
;
do
echo
"$p"
;
done
}
pipe_to_func
()
{
# We had a NOMMU bug which caused "echo Ok |" part to be lost
echo
Ok
|
func
}
pipe_to_func
|
cat
echo $
?