Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
b5be13ccd9ce2120468a381a5475955013c0f049
/
.
/
shell
/
hush_test
/
hush-misc
/
nommu3.tests
blob: 0aca67a673b9a51c2a585b259329914e94fa6213 [
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 ot be lost
echo
Ok
|
func
}
pipe_to_func
|
cat
echo $
?