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.dcron コマンドを実行して、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