aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/prog/cut.awk
diff options
context:
space:
mode:
Diffstat (limited to 'awklib/eg/prog/cut.awk')
-rw-r--r--awklib/eg/prog/cut.awk3
1 files changed, 1 insertions, 2 deletions
diff --git a/awklib/eg/prog/cut.awk b/awklib/eg/prog/cut.awk
index 04d9bc11..56e35e71 100644
--- a/awklib/eg/prog/cut.awk
+++ b/awklib/eg/prog/cut.awk
@@ -20,8 +20,7 @@ function usage( e1, e2)
print e2 > "/dev/stderr"
exit 1
}
-BEGIN \
-{
+BEGIN {
FS = "\t" # default
OFS = FS
while ((c = getopt(ARGC, ARGV, "sf:c:d:")) != -1) {