cronの設定
crontabの設定方法について
cronとはスクリプトを定期実行するデーモン
状態確認と起動
/etc/rc.d/init.d/crond status
/etc/rc.d/init.d/crond start
cronの実装 ユーザのcrontabに追加
crontab -e
時間の書き方
毎日7時30分に/home/hoge/homge.shを実行する
[分] [時] [日] [月] [曜日] [コマンド]
30 7 * * * /home/hoge/homge.sh
n秒毎にスクリプトを実行する
未実証
* * * * * for i in `seq 0 5 59`;do (sleep ${i}; 【実行したいコマンド】 ) & done;