Shell指令碼中實現更新PHP5_linux shell

來源:互聯網
上載者:User

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

可能是被 Windows 慣壞了,實在不想換個 OS,還好有 Cygwin,MinGW … 之類的東西, 適當的時候,可以拿出來裝下 B,自我安慰一下~

我總喜歡從 windows.php.net 下載最新的 snapshot,不是我想體驗最新的功能,只是強迫症的關係-,-。我機器上的所有軟體,程式都是最新的,絕大部分都還掛著 beta 標籤,甚至有一些是直接從 SVN,Git 上面拖下來的 trunk 版本,想想真是變態。如果你每天都爬上這些網站,人肉檢查一下是不是有新的版本發布,以此滿足一下自己變態的心理,那真是要瘋掉了。

能讓機器乾的事情,就不要手工去做,是吧!下面這段代碼會自動去 check 最新的 snapshot,解壓到你想要的目錄。 然後呢?建個 cron job 掛上去,就可以去找新的樂子了~

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

最後一行使用 icacls 重設了 php5-nts 目錄下檔案的許可權(注意路徑的寫法,icacls 是 windows 自己的程式),因為 cygwin 會把 NTFS 的許可權搞的巨噁心。
PS: 非 CGI/FCGI 安裝模式,記得關掉 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 1fi ## Test if build-time file exists, if not, create itif [ ! -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 timeCURRENT_BUILD_TIME=`cat $BUILD_TIME_FILE` ## Get latest build timeLATEST_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"  fifi ## Delete if file already existsls $package > /dev/null 2>&1if 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 packageuprint -n "Downloading latest php binary package ... "wget -q $PACKAGE_URLecho -e "\e[32m[OK]\e[0m" ## Extractingif [ -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 permissionsicacls D:/php5-nts /reset /T > /dev/null # vim: set expandtab tabstop=4 shiftwidth=4:
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.