我想知道是否可以让cron.d
执行一个cron命令,以便stdout或stderr上的任何内容被重定向到在同一台机器上运行的守护进程,等待输入。在这种情况下,它将是stdout或stderr
的输出。
示例:
* * * * * root /path/to/the/script.sh 2>&1 | <daemon process>
答案 0 :(得分:0)
怎么样:
* * * * * /path/to/the/script.sh 2>&1 | /path/to/the/daemon
我假设守护进程在STDIN
上阅读(你的帖子中没有提到)