2014-11-23 106 views
0

我有一個OpenShift DIY墨盒,所以我需要每天做一些工作,我讀了這篇文章: Run CRON job every 5 minutes on OpenShift (Red Hat Cloud) 並通過創建文件: 〜/ app-root/runtime/repo/.openshift/cron /minutely/awesome_job.sh 與作爲內容:如何判斷OpenShift上的cron作業是否正常工作?

#!/bin/bash 
    #chmod +x ~/app-root/runtime/repo/.openshift/cron/minutely/awesome_job.sh 
    #minute=$(date '+%M') 
    #if [ $minute == 12 ]; then 
    minute=$(date +%M) 
    if [[ $minute =~ [05]$ ]]; then 
     date > ~/app-root/runtime/repo/www/sie.txt 

    fi 

怎麼能我告訴如果是工作或沒有? (或者我需要運行通過RHC一些應用程序運行在默認的DIY墨盒cron作業)

回答

0

我認爲你需要改變

date > ~/app-root/runtime/repo/www/sie.txt 

echo date > ~/app-root/runtime/repo/www/sie.txt 

,這樣的結果「date」命令實際上會被推入該文件