Skip to content

Instantly share code, notes, and snippets.

@yjh0502
Created June 10, 2013 06:14
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 yjh0502/5746837 to your computer and use it in GitHub Desktop.
Save yjh0502/5746837 to your computer and use it in GitHub Desktop.
star.bash
#!/usr/bin/env bash
for i in `seq 5 -1 1`
do
out=
for j in `seq $i -1 1`
do
out=$out*
done
echo "$out"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment