Skip to content

Instantly share code, notes, and snippets.

@yjh0502
Last active December 18, 2015 07:29
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/5746841 to your computer and use it in GitHub Desktop.
Save yjh0502/5746841 to your computer and use it in GitHub Desktop.
jihyun@ubuntu:~/.tmp$ cat 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
jihyun@ubuntu:~/.tmp$ bash star.bash
*****
****
***
**
*
jihyun@ubuntu:~/.tmp$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment