#!/bin/sh

i=0
while true; do
    echo "LogDaemon: message number: $i"
    i=$((i+1))
    sleep 1
done
