From 87579d938e23f787205a95c195c71bc7c45cfada Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 3 Mar 2012 08:30:27 -0500 Subject: [PATCH] Wherps. Removing absolute path ref to my 'gawk'. This thing is ancient. My awk skills are definitely well beyond this by now, but not "expert level", so probably time to resurrect. --- awkfun/advice | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/awkfun/advice b/awkfun/advice index 748e658..bb2ae8e 100755 --- a/awkfun/advice +++ b/awkfun/advice @@ -1,2 +1,5 @@ -#!/home/dbuch/bin/gawk -f -BEGIN { print "Don't Panic!" } +#!/usr/bin/awk -f + +BEGIN { + print "Don't Panic!" +}