shell脚本

Posted coo-zsy

tags:

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

1.n的阶乘。

#!
#
f() {
     if [ $1 -lt 1 ];then
        echo 1
     else
        i=$[$1*$(f $[$1-1])]
        echo $i
     fi
}
f 5

技术图片

2.斐波那契函数。(1,1,2,3,5,8,13,21,34,55....)

#!/bin/bash
#

fact() {
      if [ $1 -lt 3 ];then
       echo 1
      else 
         i=$[$(fact $[$1-1])+ $(fact $[$1-2])]
         echo $i
      fi
}
fact 8

技术图片

 

 

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

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

常用python日期日志获取内容循环的代码片段

shell脚本引用expect

Shell脚本切割日志

Eclipse 中的通用代码片段或模板

Python如何调用别人写好的脚本