#!/bin/bash # BR-Life - Conway's Game of Life clear trap 'printf "\033[?25h\033[0m"; clear; exit' INT TERM EXIT printf '\033[?25l' W=$(( $(tput cols) / 2 )) H=$(( $(tput lines) - 2 )) (( W > 60 )) && W=60 (( H > 30 )) && H=30 declare -A grid next GEN=0 POP=0 # Random seed for ((y=0;y