#!/bin/bash # # ex1-v1.bash: Advent2020 game, day 17/game 1. # too slow to adapt for task 2. See ex1.bash. CMD=${0##*/} #shopt -s extglob declare -A life=() declare -i x=-1 y=-1 z=-1 res=0 declare -i maxx maxy maxz function count_neighbors () { local -i x=$1 y=$2 z=$3 x1 y1 z1 count=0 local str="" for ((x1=x-1; x1