#!/bin/sh

PIPE="/dev/weboutput"
while read data 
do
echo $data
done < $PIPE
