uptimeから取ってくる
以下は3時間経ったらhoge.shを実行する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
hour=`cat /proc/uptime | awk '{print int ($1 / 60 / 60)}'` | |
echo "$hour hour" | |
if [ $hour -gt 3 ];then | |
hoge.sh | |
fi |