diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-23 22:40:59 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-23 22:40:59 +0300 |
commit | 3defec04e39c4ca6987a21f79686576d9823c653 (patch) | |
tree | 29ec09d35813a3677424e35ae465fee903a05c21 /awklib/eg/prog/uniq.awk | |
parent | f215e2b823693103796cd71493b90300f54adba4 (diff) | |
download | egawk-3defec04e39c4ca6987a21f79686576d9823c653.tar.gz egawk-3defec04e39c4ca6987a21f79686576d9823c653.tar.bz2 egawk-3defec04e39c4ca6987a21f79686576d9823c653.zip |
More reviewer comments.
Diffstat (limited to 'awklib/eg/prog/uniq.awk')
-rw-r--r-- | awklib/eg/prog/uniq.awk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/awklib/eg/prog/uniq.awk b/awklib/eg/prog/uniq.awk index 990387ac..effc8f6c 100644 --- a/awklib/eg/prog/uniq.awk +++ b/awklib/eg/prog/uniq.awk @@ -18,8 +18,7 @@ function usage( e) # -n skip n fields # +n skip n characters, skip fields first -BEGIN \ -{ +BEGIN { count = 1 outputfile = "/dev/stdout" opts = "udc0:1:2:3:4:5:6:7:8:9:" |