hush/shell/hush_test/hush-misc/nommu3.tests
Denys Vlasenko 450a367a11 typo fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2015-10-13 01:49:06 +02:00

16 lines
183 B
Bash
Executable File

#!/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 $?