From 6aa4a7d469bfdf089aff99ce26f4d8446c5cec4c Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Sun, 19 Mar 2023 03:55:08 +0100 Subject: [PATCH] Add demo.sh script to show an animation --- demo.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 demo.sh diff --git a/demo.sh b/demo.sh new file mode 100755 index 0000000..161414a --- /dev/null +++ b/demo.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +for height in $(seq $(( $(tput lines) - 2 ))); do clear; rush03 $(( height * 2 )) ${height}; sleep .02; done