status_of_procとは何ですか?どのように呼び出しますか?
Debian 7(Wheezy)のnginxのinitスクリプトで、次の抜粋を読みました。 status) status_of_proc -p /var/run/$NAME.pid "$DAEMON" nginx && exit 0 || exit $? ;; このコードは問題なく実行され、sudo service nginx status出力されます[ ok ] nginx is running。しかしstatus_of_proc、bashでもダッシュでも定義されていません。 $ type status_of_proc status_of_proc: not found nginxスクリプトに同じチェックを挿入すると、次の結果が得られました。 status_of_proc is a shell function また、initファイル自体でbashを実行すると、さらに説明が得られます。 status_of_proc is a function status_of_proc () { local pidfile daemon name status OPTIND; …