bitreichcoin - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
bitreichcoin (247B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 brc=' | |
4 *__* | |
5 * /_ | * | |
6 * | | * | |
7 * |_| * | |
8 * BRC * | |
9 * *' | |
10 | |
11 if test $# -gt 0 | |
12 then | |
13 i="$1" | |
14 printf 'here are your %d BRC:\n' "$i" | |
15 while test "$i" -gt 0 | |
16 do | |
17 echo "$brc" | |
18 i="$((i - 1))" | |
19 done | |
20 fi |