Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我是否可以cron.d执行 cron 命令,以便将 stdout 或 stderr 上的任何内容重定向到在同一台机器上运行并等待输入的守护进程。在这种情况下,它将是 stdout 或stderr.
cron.d
stderr
例子:
* * * * * root /path/to/the/script.sh 2>&1 | <daemon process>
关于什么 :
* * * * * /path/to/the/script.sh 2>&1 | /path/to/the/daemon
?
我假设守护程序会继续阅读STDIN(您的帖子中没有提到)
STDIN