cron输出到守护进程

时间:2012-10-17 17:17:41

标签: shell scripting io cron daemon

我想知道是否可以让cron.d执行一个cron命令,以便stdout或stderr上的任何内容被重定向到在同一台机器上运行的守护进程,等待输入。在这种情况下,它将是stdout或stderr的输出。

示例:

* * * * * root /path/to/the/script.sh 2>&1 | <daemon process>

1 个答案:

答案 0 :(得分:0)

怎么样:

* * * * * /path/to/the/script.sh 2>&1 | /path/to/the/daemon

我假设守护进程在STDIN上阅读(你的帖子中没有提到)