0

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

例子:

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

1 回答 1

0

关于什么 :

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

?

我假设守护程序会继续阅读STDIN(您的帖子中没有提到)

于 2012-10-17T17:19:32.787 回答