#!/usr/local/bin/ksh # Enable nicely behaved resizing of xterm window when this script # is run in a loop; catch new size at the top of each new image. ./setLinesColumns.pl > /tmp/test_MNS.$$ . /tmp/test_MNS.$$ rm /tmp/test_MNS.$$ nice -10 CA_1D_new.pl \ --states=2 \ --color_flag \ --notext_flag \ --rule_name=life_1d \ --randomness=uniform \ --diameter=$COLUMNS \ --generations=$(( $LINES - 2 )) \ --neighboroffsets=-4 \ --neighboroffsets=-3 \ --neighboroffsets=-2 \ --neighboroffsets=-1 \ --neighboroffsets=1 \ --neighboroffsets=2 \ --neighboroffsets=3 \ --neighboroffsets=4 \