主頁(yè) > 知識(shí)庫(kù) > Shell腳本中實(shí)現(xiàn)更新PHP5

Shell腳本中實(shí)現(xiàn)更新PHP5

熱門標(biāo)簽:寧波智能外呼系統(tǒng)公司 申請(qǐng)公司400電話要注意什么 安裝外呼系統(tǒng)費(fèi)用 地圖標(biāo)注輻射圖案 衛(wèi)星地圖標(biāo)注地名 奧維互動(dòng)地圖標(biāo)注參數(shù) 曲阜400電話辦理 聯(lián)通電話機(jī)器人怎么接 電銷機(jī)器人 劍魚

我很迷戀 Shell,很喜歡看著字符在黑色的 Console 界面中跳躍著,奇怪的是,我居然沒有因此成為一個(gè) Linux/Unix 程序員,而只是個(gè)寫 CGI 程序的倒霉蛋。大家都是怎么稱呼 “PHP 程序員”的?對(duì)了——草根~ 嗯,在土里埋的太久,說不定哪天就爛掉了咯! 

可能是被 Windows 慣壞了,實(shí)在不想換個(gè) OS,還好有 Cygwin,MinGW … 之類的東西, 適當(dāng)?shù)臅r(shí)候,可以拿出來裝下 B,自我安慰一下~

我總喜歡從 windows.php.net 下載最新的 snapshot,不是我想體驗(yàn)最新的功能,只是強(qiáng)迫癥的關(guān)系-,-。我機(jī)器上的所有軟件,程序都是最新的,絕大部分都還掛著 beta 標(biāo)簽,甚至有一些是直接從 SVN,Git 上面拖下來的 trunk 版本,想想真是變態(tài)。如果你每天都爬上這些網(wǎng)站,人肉檢查一下是不是有新的版本發(fā)布,以此滿足一下自己變態(tài)的心理,那真是要瘋掉了。

能讓機(jī)器干的事情,就不要手工去做,是吧!下面這段代碼會(huì)自動(dòng)去 check 最新的 snapshot,解壓到你想要的目錄。 然后呢?建個(gè) cron job 掛上去,就可以去找新的樂子了~

代碼中下載的是,None thead safe VC9 版本,注意替換成自己能用的版本。需要強(qiáng)制更新的話,加上 “–force” 參數(shù)。

最后一行使用 icacls 重置了 php5-nts 目錄下文件的權(quán)限(注意路徑的寫法,icacls 是 windows 自己的程序),因?yàn)?cygwin 會(huì)把 NTFS 的權(quán)限搞的巨惡心。
PS: 非 CGI/FCGI 安裝模式,記得關(guān)掉 Web Server。

#!/bin/bash
 
INSTALL_PATH="/cygdrive/d/php5-nts"
BUILD_TIME_FILE="/cygdrive/d/php5-nts/build-time"
PACKAGE_URL="http://windows.php.net/downloads/snaps/php-5.3-nts-win32-VC9-x86-latest.zip"
 
function uprint {
  if [ "${1:0:1}" = "-" ]; then
    echo $1 "# $2"
  else
    echo "# $1"
  fi
}
 
## If unzip available?
UNZIP=`which unzip 2> /dev/null`
if [ -z $UNZIP ]; then
  uprint "Could not find unzip, please install."
  exit 1
fi
 
## Test if build-time file exists, if not, create it
if [ ! -f $BUILD_TIME_FILE ]; then
  uprint -n "Build time file does not exists, created ... "
  touch $BUILD_TIME_FILE
  echo -e "\e[32m[OK]\e[0m"
fi
 
## Get current build time
CURRENT_BUILD_TIME=`cat $BUILD_TIME_FILE`
 
## Get latest build time
LATEST_BUILD_TIME=`curl --silent http://windows.php.net/snapshots/ | \

    grep "php-5.3-nts-VC9-x86" | \

    grep "VC9 x86 Non Thread Safe (" | \

    grep -o "(.*)" | \

    sed 's/[()]//g'`
 
## Any update?
package=`basename $PACKAGE_URL`
if [ "$CURRENT_BUILD_TIME" != "$LATEST_BUILD_TIME" ]; then
  uprint -e "New version available, build time: \e[36m$LATEST_BUILD_TIME\e[0m"
else 
  if [ "$1" != "--force" ]; then
    uprint "You are using the latest snapshot version."
    exit 0
  else 
    uprint -e "\e[31mForce to update local php version.\e[0m"
  fi
fi
 
## Delete if file already exists
ls $package > /dev/null 2>1
if test $? -eq 0; then
  uprint -n "Performing: rm -f \`ls $package\` ... "
  rm -f `ls $package`
  echo -e "\e[32m[OK]\e[0m"
fi
 
## Get latest php5 binary package
uprint -n "Downloading latest php binary package ... "
wget -q $PACKAGE_URL
echo -e "\e[32m[OK]\e[0m"
 
## Extracting
if [ -f $package ]; then
  # kill php processes
  for php_pid in `ps -as | grep php | awk '{print $1}'`
  do 
    kill -9 $php_pid
  done
 
  uprint -n "Extracting ... "
  unzip -o $package -x -d $INSTALL_PATH > /dev/null 2>1
  echo -e "\e[32m[OK]\e[0m"
  echo $LATEST_BUILD_TIME > $BUILD_TIME_FILE
 
  uprint -n "Cleaning up ... "
  rm -f $package
  echo -e "\e[32m[OK]\e[0m"
fi
 
## Fixed cygwin permissions
icacls D:/php5-nts /reset /T > /dev/null
 
# vim: set expandtab tabstop=4 shiftwidth=4:
您可能感興趣的文章:
  • PHP+shell實(shí)現(xiàn)多線程的方法
  • php-fpm開機(jī)自動(dòng)啟動(dòng)Shell腳本
  • Shell、Perl、Python、PHP訪問 MySQL 數(shù)據(jù)庫(kù)代碼實(shí)例
  • Shell腳本實(shí)現(xiàn)啟動(dòng)PHP內(nèi)置FastCGI Server
  • PHP和Shell實(shí)現(xiàn)檢查SAMBA與NFS Server是否存在
  • Ruby、PHP、Shell實(shí)現(xiàn)求50以內(nèi)的素?cái)?shù)
  • shell腳本聯(lián)合PHP腳本采集網(wǎng)站的pv和alexa排名
  • php管理nginx虛擬主機(jī)shell腳本實(shí)例
  • 監(jiān)控服務(wù)器swap并重啟php的Shell腳本
  • PHP+shell腳本操作Memcached和Apache Status的實(shí)例分享

標(biāo)簽:大慶 大興安嶺 江西 遵義 三門峽 上饒 安康 仙桃

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Shell腳本中實(shí)現(xiàn)更新PHP5》,本文關(guān)鍵詞  Shell,腳本,中,實(shí)現(xiàn),更新,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Shell腳本中實(shí)現(xiàn)更新PHP5》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Shell腳本中實(shí)現(xiàn)更新PHP5的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章