就像git commit可以挂钩* .sh一样.我想使用zend studio来编辑服务器上的文件,当我保存文件时,它可以触发所需的脚本运行.
#!/bin/bash while true do inotifywait -e modify /path/to/watched_file.txt && /bin/bash /path/to/your-script.sh done
这将在文件写入时执行脚本,但可能是-e列表必须根据您的情况进行调整,请参阅man inotifywait.
替代方案:只需使用git钩子.