sh ShellScript中的Fibonacci

Posted

tags:

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

#!/bin/sh

fibonacci()
{
if [ $# -lt 1 ];
then 
	echo "fibonacci: specify an index"
	return;
fi;

if [ $1 == 0 ]; then echo 0; return; fi; 
if [ $1 == 1 ]; then echo 1; return; fi;

echo $(expr $(fibonacci $(expr $1 - 1)) + $(fibonacci $(expr $1 - 2)));
}

以上是关于sh ShellScript中的Fibonacci的主要内容,如果未能解决你的问题,请参考以下文章

在完成MySQL导入后在链接的容器上执行shellscript

sh 与fibonacci(40)的基本性能比较ruby / mruby(解释,mrb字节码,c字节码)

jenkins在pipline中运行后台命令

通过 shellscript 编辑文件? [复制]

检查 Oracle DB .shellscript 作业中的大量记录超时

使用 shellscript 用 config.json 中定义的 1-n 个特定值替换 html 文件中的占位符 [关闭]