引語:我本人以前並沒有寫過shell指令碼,也許是因為懶,也許是沒有被逼到要去寫shell的地步。但是,前段時間,工作需求,要求重新跑幾個月的指令碼,這些指令碼是每天定時進行跑的,而且每天是好幾個指令碼一起關聯跑的。你也許會說,這太簡單了,寫個迴圈,然後,讓他自己去跑就行了。是的,你可以很順手的用你的程式設計語言去寫迴圈,如PHP。但是,你知道,這樣做其實是改變了代碼結構了,鬼知道會導致什麼結果呢? 並且,我並不保證裡面所有代碼的意思,我都懂!那麼,問題來了,在不改變原代碼的前提下,怎樣去迴圈這幾個月的時間呢? 沒錯,那就是,類比真實運行時的情況,傳入需要接收的日期參數(前提是你的代碼裡面已經有了這個門)!你知道,這種定時指令碼都有一個優雅的名字,crontab,那麼,就是shell了,你要做的就是寫shell了。
沒有寫過shell? 沒關係了,其實需求確定之後,你顯然已經知道,這太簡單了。不就是文法問題嗎? 你別告訴我你不會Google,不會百度!
我就先拋幾個需要考慮的點,後面直接給代碼吧!
1、怎樣擷取目前時間,並轉換成你需要的格式? 關鍵詞: date
2、怎樣防止同時多次運行同一個內容? 關鍵詞: lock
3、怎樣讓程式運行完一次之後,冷卻執行? 關鍵詞: sleep
4、怎樣指定已耗用時間段,counter或者起始日期? 關鍵詞: while, let, expr
5、附加:怎樣知道當前的運行狀態如何了? 關鍵詞: echo , progress
把這些問題考慮好了,你就一步步去寫吧,不知道文法的,直接Google、百度,代碼參考如下:
#/bin/bash# @author: youge# @date: 2015-12-22startDate="2015-11-24" # when to start startDateTimestamp=`date -d "$startDate" +%s`endDate="2015-12-14" # when to endendDateTimestamp=`date -d "$endDate" +%s`sleepTime=25 # to take a breakhaveSthUndo=0 # check if there is something undo , if not , exit the programrootDir='/cygdrive/d/wamp/ppi/'dir=$rootDir"cron/"itemArr=("itemA" "itemB" "itemC") # the items you want to run therefor item in ${itemArr[@]}do runFile=$rootDir$item".run"; if [ ! -f "$runFile" ] ; then haveSthUndo=1; echo $item" runs on me" $runFile " touched"; echo -e "script startTime: "`date "+%Y-%m-%d %H:%M:%S"` "\nbeginDate:" $startDate "\nendDate:" $endDate "\npath:" $dir >> $runFile touch "$runFile"; break; else echo $item "is runing, skipped. " $runFile; fidone;if [ $haveSthUndo -ne 1 ]; then echo -e "Nothing to do now ...\ncheck it..."; exit;fiecho "haveSthUndo eq: " $haveSthUndo;while [[ $endDateTimestamp -ge $startDateTimestamp ]]do runDate=`date -d @$startDateTimestamp +%Y-%m-%d`; #1987-01-06 params="item=$item&d=$runDate"; msg="[`date "+%Y-%m-%d %H:%M:%S"`] now we run the date: "${runDate}" [params]: "${params}; echo $msg; # to show me ... echo $msg >> $runFile; # run the scripts below cd $dir && /bin/php ./script1.php $params && /bin/php ./script2.php $params && /bin/php ./scriptx.php $params # run the scripts upon startDateTimestamp=`expr $startDateTimestamp + 86400`; # run the next day ... echo " ___sleeping for $sleepTime seconds ... "; x=''; for ((itime=0; itime<$sleepTime; itime++)); do let itime2=$itime+1; progress=`expr $itime2 \* 100 / $sleepTime`; printf "cooling:[%-"$sleepTime"s]%d%%\r" $x $progress x=#$x sleep 1; # sleep xx seconds to run the next time, show the progress done; echo;done;echo "[`date "+%Y-%m-%d %H:%M:%S"`] the end." >> $runFile;#end of the file
附錄:
根據本人初涉shell,遇到的問題例舉如下,希望可以減少大家走彎路的時間:
1、整個shell指令碼,其實就相當於你在終端輸入的一系列命令,如果想在shell裡做什麼,就先想想在終端可以做什麼吧,字元的的串連,就是直接用 "" 雙引號,輸出,變數定義無 $ 符號,但是使用時一定要加上 $ 符號。
2、"=" 賦值符號,兩邊一定不能有空格,這和其他語言有區別,尤其是你還有自己代碼美觀風格時特別注意,否則會報語法錯誤!
3、for 中的數組內容是以 " " 空格分隔,而非 "," 逗號分格
4、條件判斷 [ true ] 中括弧 後面需要有一個空格,但是兩個中括弧之間不能有空格如 [[ true ]]
5、while 條件判斷可以用 () 括弧,也可以用 [[ ]] 中括弧
6、如果用windows寫shell,一定要注意分行符號格式 \n 而非 \r\n , 需要藉助一些編輯器(如notepad++)更改分行符號格式!
終了: 其實,語言只是一種工具,永遠不會太難(太難也不會有人用啊),真正能讓工具工作起來的,是你的思想!
其實很簡單,Just do it .
[ root @my-pc ]$ sh urScripts.sh #see you next time
以上就是本文的詳細內容,希望對大家的學習有所協助。