From 5dc7eefe43a75ad5a589c1067a45dee916c8e7ec Mon Sep 17 00:00:00 2001 From: mmattmcw Date: Tue, 30 Nov 2021 10:20:28 -0500 Subject: [PATCH] Add a script for simulating the math --- simulation.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 simulation.sh diff --git a/simulation.sh b/simulation.sh new file mode 100644 index 0000000..63d5212 --- /dev/null +++ b/simulation.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +for (( frame=0; frame<=166; frame++ )) +do + echo "frame: ${frame}" +done