summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/hbar.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/hbar.sh b/test/hbar.sh
new file mode 100755
index 0000000..d40c2ad
--- /dev/null
+++ b/test/hbar.sh
@@ -0,0 +1,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}