bitreichcoin - annna - Annna the nice friendly bot.
HTML git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/annna/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR 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