您好,登錄后才能下訂單哦!
這篇文章主要講解了“shell腳本怎么實現實時檢測文件變更”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“shell腳本怎么實現實時檢測文件變更”吧!
使用python做web開發,現在流行使用uwsgi調用python程序,但是使用uwsgi一段時間發現有一個弊端,就是每次更改源代碼后必須重啟uwsgi才能生效,包括更改模板文件也是,我是個懶人,再經過一段時間反復的更改-重啟后我終于忍受不了,決定寫一個腳本來定時程序目錄的文件改動,并及時自動重啟uwsgi,來解放我的雙手可以不用理會這些瑣碎的重啟工作. 用了點時間來編寫了一個腳本用來判斷是否更改,然后判斷是否需要重啟uwsgi.
下面放出腳本內容:
#!/bin/bash # Author : cold # Filename : checkchange.sh # Useage : sh checkchange.sh [dir] checkisdir() # Have one argument # The argument is a directory for i in `ls $1 | sed -e 's/ /\n/g'` do if [ -d $1/$i ] then if [ $i == "bin" -o $i == "lib" -o $i == "include" ] # 不想檢測的目錄(這里是使用virtualenv生成的環境文件) then continue fi dir="$1/$i" checkisdir $dir else files=$files'\n'$1'/'$i fi done echo -e $files } while true do if [ -e /tmp/stat.tmp ] then for i in `checkisdir $1` do if [ -e /tmp/patch.tmp ] then stat $i | grep Change > /tmp/nstat.tmp rm -f /tmp/patch.tmp continue fi stat $i | grep Change >> /tmp/nstat.tmp done diff /tmp/stat.tmp /tmp/nstat.tmp > /tmp/patch.tmp if [ $? -eq 0 ] then sleep 10 else /etc/init.d/uwsgi.py restart # 將此處更改為想要做的操作 patch /tmp/stat.tmp /tmp/patch.tmp fi else for i in `checkisdir $1` do stat $i | grep Change >> /tmp/stat.tmp done continue fi done
這里主要測試變更后重啟uwsgi,使用方法:我的bottle程序在/code/python下:
代碼如下:
sh checkchange.sh /code/python &
如果使用svn可以參考下面代碼:
#!/bin/bash # Author : cold # Filename : checkupdate.sh # Describle : To Check update of svn while true do cd /code/python svn up | grep At > /dev/null 2>&1 if [ $? -eq 0 ] then sleep 30 fi svn up | grep Updated > /dev/null 2>&1 if [ $? -eq 0 ] then /etc/init.d/uwsgi.py restart fi done
感謝各位的閱讀,以上就是“shell腳本怎么實現實時檢測文件變更”的內容了,經過本文的學習后,相信大家對shell腳本怎么實現實時檢測文件變更這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。