Add a script for simulating the math

This commit is contained in:
Matt McWilliams 2021-11-30 10:20:28 -05:00
parent 96b4a47397
commit 5dc7eefe43
1 changed files with 6 additions and 0 deletions

6
simulation.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
for (( frame=0; frame<=166; frame++ ))
do
echo "frame: ${frame}"
done