Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一台带有 Linux 的服务器,我需要每 5 秒启动一个带有许多命令的 sh 脚本。
使用 crontab,最短为 1 分钟。
我怎样才能做到这一点 ??
谢谢 !
也许watch
watch
例子
watch -n 5 foo.sh
您还可以sleep在 shell 脚本的循环中使用:
sleep
#!/bin/sh while [ true ] do sh foo.sh sleep 5 done