标签: php shell
如何使用shell脚本每5秒调用一次函数。有没有办法每隔5秒调用一次功能?
#!/bin/sh while [ true ] do sh special_svn_script.sh sleep 10 done