Skip to content

Instantly share code, notes, and snippets.

@managai
Created October 17, 2011 11:09
Show Gist options
  • Save managai/1292405 to your computer and use it in GitHub Desktop.
Save managai/1292405 to your computer and use it in GitHub Desktop.
(bash) calculate fibonacci number
#!/bin/bash
fib () {
if [ $1 -le 1 ]; then
echo $1
else
echo $[$[`fib $[$1 - 1]` + `fib $[$1 - 2]`]]
fi
}
fib $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment