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

HBAR=./bin/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} -t -T "${TEXT}" -u ${UNIT} $x $MAX