writing to a pipe by a script started via cron


You run into trouble? Your script started by cron and stdout to a pipe behaves strange? (Pipe made by 'mknod /var/pipes/mypipe p'.)
[ * * * * * myscript.sh > /var/pipes/mypipe ]
Solution: You have to read from this pipe, by a process or by hand.
[tail -f /var/pipes/mypipe]

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.