summaryrefslogtreecommitdiff
path: root/test/hbar.sh
blob: d40c2adf0bdd5a00fda83507353ae1b5370ea821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

HBAR=./src/hbar/hbar
TEXT="Hello there"
UNIT="mb"
MAX=100

for x in $(seq $MAX); do
    ${HBAR} -T "${TEXT}" -u ${UNIT} $x $MAX
    sleep 0.01
done

${HBAR}