From: Siraaj Khandkar Date: Wed, 8 Aug 2012 23:37:16 +0000 (-0400) Subject: Start-up wrapper script for 003. X-Git-Url: https://git.xandkar.net/?p=cellular-automata.git;a=commitdiff_plain;h=5138a5bfba8adde459ab07601639f3e8e24ce925 Start-up wrapper script for 003. --- diff --git a/003/bin/life b/003/bin/life new file mode 100755 index 0000000..27371bd --- /dev/null +++ b/003/bin/life @@ -0,0 +1,12 @@ +#! /bin/sh + + +Y=`expr \`stty size | awk '{print $1}'\` - 3` +X=`stty size | awk '{print $2}'` + + +erl \ + -name life_003@localhost \ + -noshell \ + -pa ebin \ + -s life bang $X $Y