shell腳本實(shí)現(xiàn)實(shí)時(shí)檢測文件變更
使用python做web開發(fā),現(xiàn)在流行使用uwsgi調(diào)用python程序,但是使用uwsgi一段時(shí)間發(fā)現(xiàn)有一個弊端,就是每次更改源代碼后必須重啟uwsgi才能生效,包括更改模板文件也是,我是個懶人,再經(jīng)過一段時(shí)間反復(fù)的更改-重啟后我終于忍受不了,決定寫一個腳本來定時(shí)程序目錄的文件改動,并及時(shí)自動重啟uwsgi,來解放我的雙手可以不用理會這些瑣碎的重啟工作. 用了點(diǎn)時(shí)間來編寫了一個腳本用來判斷是否更改,然后判斷是否需要重啟uwsgi.
下面放出腳本內(nèi)容:
#!/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生成的環(huán)境文件)
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
相關(guān)文章
shell監(jiān)控linux系統(tǒng)進(jìn)程創(chuàng)建腳本分享
shell監(jiān)控linux系統(tǒng)進(jìn)程創(chuàng)建腳本,大家參考使用吧2013-12-12
Linux?shell進(jìn)行文件解壓,復(fù)制和移動詳解
Linux下進(jìn)行文件的解壓、復(fù)制、移動應(yīng)該是最常見的操作了。尤其是我們在項(xiàng)目中使用大量的數(shù)據(jù)集文件時(shí)。本文我們就來細(xì)數(shù)用Shell進(jìn)行文件操作的這些坑2022-05-05
Shell獲取進(jìn)程PID的實(shí)現(xiàn)
本文主要介紹了Shell獲取進(jìn)程PID的實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-06-06

