52be6f3ffce83574be2f3c456536f19ea7d2f728
[cellular-automata.git] / life
1 #! /bin/sh
2
3
4 Y=`expr \`stty size | awk '{print $1}'\` - 3`
5 X=`stty size | awk '{print $2}'`
6
7
8 erl \
9 +P 100000000 \
10 -name life_001@localhost \
11 -noshell \
12 -pa ebin \
13 -life x $X y $Y \
14 -s life bang
This page took 0.063329 seconds and 3 git commands to generate.