[linux] shell脚本编程-xunsearch安装脚本学习
安装脚本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
十年开发经验程序员,离职全心创业中,历时三年开发出的产品《唯一客服系统》
一款基于Golang+Vue开发的在线客服系统,软件著作权编号:2021SR1462600。一套可私有化部署的网站在线客服系统,编译后的二进制文件可直接使用无需搭开发环境,下载zip解压即可,仅依赖MySQL数据库,是一个开箱即用的全渠道在线客服系统,致力于帮助广大开发者/公司快速部署整合私有化客服功能。
开源地址:唯一客服(开源学习版)
官网地址:唯一客服官网