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.
親プロセスと子プロセスに HUP を送信するためのシェル スクリプトが必要です。
tcsh で freeBSD を使用していますか? #/ビン/sh
どういうわけか、pgrep からの PID 出力をシェル スクリプトのループで kill -HUP にパイプする必要があります。
最終的には、このスクリプトを cron ジョブとして実行したいと考えています。
ただ、まだスキルがありません。
ありがとう - ブラッド
(これは完全な答えではありませんが、明らかに少なくとも50の評判がなければコメントをすることはできません)。
まず第一に、FreeBSDの/ bin / shはBoune互換のシェルであり、tcsh(/ bin / tcsh)ではありません。開始は次のようになります。
#!/bin/sh for pid in $(pgrep <process name>); do kill -HUP $pid; done
詳細がなければ、これ以上言うことはできません。