Skip to content

Instantly share code, notes, and snippets.

@fipar
Last active November 25, 2015 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fipar/64ac1cd85c971b351528 to your computer and use it in GitHub Desktop.
Save fipar/64ac1cd85c971b351528 to your computer and use it in GitHub Desktop.
fac()
{
[ $1 -eq 0 ] && echo 1 && return
seq $1 |tr '\n' '*'|sed 's/*$//g' | bc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment