From: Siraaj Khandkar <siraaj@khandkar.net>
Date: Mon, 27 Aug 2012 15:00:50 +0000 (-0400)
Subject: Pointing directly at `awk`, rather than via `env`.
X-Git-Url: https://git.xandkar.net/?a=commitdiff_plain;h=917c9b6f1878c44e497d0e8dafc16920ffd8dcaf;p=cellular-automata.git

Pointing directly at `awk`, rather than via `env`.

Though it worked fine on Mac OS X, for whatever reason, this technique breaks
down on Debian and the shell complains:
    /usr/bin/env: awk -f: No such file or directory
---

diff --git a/004/life.awk b/004/life.awk
index 469229a..73cad1d 100755
--- a/004/life.awk
+++ b/004/life.awk
@@ -1,4 +1,4 @@
-#! /usr/bin/env awk -f
+#! /usr/bin/awk -f
 
 
 function CHAR_BORDER() {return "-"}