Sign in
coral
/
busybox
/
0356607264b8e1476d98a81667488ba1d6295d23
/
.
/
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 $
?