From 37c22e7545655a6b8169279a085d15a38cfa05f9 Mon Sep 17 00:00:00 2001 From: r4tss <68610647+r4tss@users.noreply.github.com> Date: Thu, 22 Apr 2021 08:57:10 +0200 Subject: did stuff --- render.sh | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 render.sh (limited to 'render.sh') diff --git a/render.sh b/render.sh new file mode 100755 index 0000000..d686f40 --- /dev/null +++ b/render.sh @@ -0,0 +1,43 @@ +#!/bin/zsh +W=0 +H=0 +height=0 + +echo ${distance[1]} + +function a { #input format: distance, height, invert + if [ $(echo "$(sed -n $(echo $((W + 1))p) distances) < ($height * 0.75)" | bc) -eq 1 ] + then + b="#" + elif [ $H -gt 20 ] + then + b="-" + else + b=" " + fi +} + +while [ $H -lt 41 ] +do + echo + while [ $W -lt 91 ] + do + a + if [ $W -eq 90 ] + then + echo $b + else + echo -n $b + fi + echo -n " " + ((W++)) + done + ((H++)) + if [ $H -lt 21 ] + then + ((height++)) + else + ((height--)) + fi + W=0 +done -- cgit v1.2.3