shell脚本大全

Posted hanlaomo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本大全相关的知识,希望对你有一定的参考价值。

1 while true循环:
        while :
        do
            内容
        done
 2 while循环
        while [ $i -le 100 ]
        do
            let sum=sum+$i
            let i+=2
        done
        -eq 等于;-ne 不等于;-gt 大于;-lt 小于;-ge 大于等于;-le 小于等于;
 
3 $?返回上一条指令结果;
    行号
    12   function add(){
    13     return `expr $1 + $2`
    14   }
    15   add 23 50 #此处返回73
    16   if [ $? -eq 73 ]
    17   then
    18     echo "yyy $?"
    19   else
    20     echo "nnn $?"
    21   fi
    结果输出为yyy 0;因为18行返回的是16行的结果;

以上是关于shell脚本大全的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本大全

《Linux命令行与shell脚本编程大全》 第五章理解shell

第10章:构建基本的脚本_《shell脚本大全 第二版》

shell脚本大全

《Linux命令行与Shell脚本编程大全第2版.布卢姆》pdf

linux命令行与shell脚本编程大全---bash shell命令