安裝腳本setup.sh if ! test -d ./packages ; then 1.shell腳本編程中的if判斷配合test命令,判斷目錄是否存在 2.if判斷格式如,寫成一行 ,if test 條件;then 動作;else 動作;fi 3.判斷條件相等用-eq 或者 =,不相等 -ne ...
安裝腳本setup.sh
#!/bin/sh # FULL fast install/upgrade script # See help message via `--help' # $Id$ # self check if ! test -d ./packages ; then echo "ERROR: you should run the script under its directory" echo "錯誤:您只能在腳本所在目錄運行它" exit -1 fi # get default prefix if test -f $HOME/.xs_installed ; then def_prefix=`cat $HOME/.xs_installed` elif test "$HOME" = "/" || test "$HOME" = "/root" ; then def_prefix=/usr/local/xunsearch else def_prefix=$HOME/xunsearch fi
if ! test -d ./packages ; then
1.shell腳本編程中的if判斷配合test命令,判斷目錄是否存在
2.if判斷格式如,寫成一行 ,if test 條件;then 動作;else 動作;fi
3.判斷條件相等用-eq 或者 =,不相等 -ne
4.if test -d $HOME ;then echo "$HOME is dir";else echo "$HOME is not dir";fi
$HOME
1.家目錄的環境變數
i=0 while [ $i -lt $# ] ; do i=`expr $i + 1` eval arg=\$$i opt=`echo $arg | cut -d= -f1` val=`echo $arg | cut -d= -f2` case $opt in "--prefix") set_prefix="$val" ;; "--no-clean") set_no_clean=yes ;; # just for back compatibility "--clean") do_clean exit ;; "--force") if test "$val" != "no" ; then set_force=yes fi ;; "--enable-debug"|"--enable-memory-cache") xs_add_option="$xs_add_option $arg" ;; "--jobs") mk_add_option="$mk_add_option -j$val" ;; "--help") show_usage exit ;; *) echo "ERROR: unknown option '$arg'" >&2 echo "" >&2 show_usage exit -1 ;; esac done
while [ $i -lt $# ] ; do
1.while迴圈,當$i小與$#時,執行
2.while迴圈舉例,註意空格
b=0;while [ $b -lt 5 ]; do b=`expr $b + 1`;echo $b; done
i=0
while [ $i -lt $# ] ; do
i=`expr $i + 1`
1.while迴圈 i=0;while [ $i -lt 5 ];do i=`expr $i + 1 `;echo $i;done
2.特殊變數$#是傳遞的參數個數
3.命令替換 ``
4.數學表達式工具 expr, echo `expr 1 + 1`
eval arg=\$$i
1.eval 把字元串變成變數
2.特殊變數 $1 $2,傳遞的參數
while test -z ""; do
1.test -z 判斷字元串空,則為真 if test -z "";then echo 1;fi
2.test -n 判斷字元串存在,則為真 if test -n "sss";then echo 1;fi