27371bd39f9571752f5c89f0561e9e7b3d68b0e4
[cellular-automata.git] / 003 / bin / 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 -name life_003@localhost \
10 -noshell \
11 -pa ebin \
12 -s life bang $X $Y
This page took 0.069824 seconds and 4 git commands to generate.