blob: ac82a6a115a30e39acb220ed02f20219e03caf3c [file] [log] [blame]
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02001#!/bin/sh
2
3func()
4{
5 while read p; do echo "$p"; done
6}
7
8pipe_to_func()
9{
Denys Vlasenko450a3672015-10-13 01:49:06 +020010 # We had a NOMMU bug which caused "echo Ok |" part to be lost
Denys Vlasenkob5be13c2015-09-04 06:22:10 +020011 echo Ok | func
12}
13
14pipe_to_func | cat
15echo $?