#!/bin/bash # Maze generator in bash. # Joe Wingbermuehle # 2013-04-21 # The size of the maze (must be odd). MAZE_WIDTH=39 MAZE_HEIGHT=21 # Initialize the maze array. function init_maze { for ((y=0; y