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 分です。
どうやってやるの ??
ありがとう !
sleepシェルスクリプトのループで使用することもできます:
sleep
#!/bin/sh while [ true ] do sh foo.sh sleep 5 done
多分watch
watch
例
watch -n 5 foo.sh