什么是status_of_proc,我怎么称呼它?
在Debian 7(Wheezy)中Nginx的初始化脚本中,我阅读了以下摘录: 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; …