我正在使用 apache 进行测试,在 vim 上经常编辑 000-defualt.conf 文件,保存,然后运行service apache2 restart
。
当该文件发生更改时,我有什么选项可以自动重新启动 apache?
答案1
只需使用通知等待(安装你的发行版的inotify-tools
软件包):
while inotifywait -e close_write 000-defualt.conf; do service apache2 restart; done
我正在使用 apache 进行测试,在 vim 上经常编辑 000-defualt.conf 文件,保存,然后运行service apache2 restart
。
当该文件发生更改时,我有什么选项可以自动重新启动 apache?
只需使用通知等待(安装你的发行版的inotify-tools
软件包):
while inotifywait -e close_write 000-defualt.conf; do service apache2 restart; done