OpenBSD CVS

CVS log for src/usr.bin/awk/awk.1


[BACK] Up to [local] / src / usr.bin / awk

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.68 / (download) - annotate - [select for diffs], Thu Sep 21 18:16:12 2023 UTC (7 months, 3 weeks ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, HEAD
Changes since 1.67: +4 -3 lines
Diff to previous 1.67 (colored)

--csv is an extension; ok millert

Revision 1.67 / (download) - annotate - [select for diffs], Thu Sep 21 16:30:54 2023 UTC (7 months, 4 weeks ago) by schwarze
Branch: MAIN
Changes since 1.66: +17 -5 lines
Diff to previous 1.66 (colored)

Document LC_CTYPE.
Based on a diff from millert@ with additions by me.
Feedback and OK millert@.

Revision 1.66 / (download) - annotate - [select for diffs], Mon Sep 18 15:20:48 2023 UTC (8 months ago) by jmc
Branch: MAIN
Changes since 1.65: +4 -4 lines
Diff to previous 1.65 (colored)

add --csv to usage(), and reformat it to match manual; while here,
reformat a lengthy line in awk.1;

ok millert

Revision 1.65 / (download) - annotate - [select for diffs], Sun Sep 17 14:49:44 2023 UTC (8 months ago) by millert
Branch: MAIN
Changes since 1.64: +13 -4 lines
Diff to previous 1.64 (colored)

Update to the One True Awk, 2nd edition (Sep 12, 2023).

This corresponds to the 2nd edition of "The AWK Programming Language"
and adds support for UTF-8 and comma-separated value inputs.

Revision 1.64 / (download) - annotate - [select for diffs], Fri Sep 15 15:07:08 2023 UTC (8 months ago) by jsg
Branch: MAIN
Changes since 1.63: +4 -4 lines
Diff to previous 1.63 (colored)

update awk book reference for the second edition
it will be published in 2023 with a copyright date of 2024
ok jmc@ millert@

Revision 1.63 / (download) - annotate - [select for diffs], Mon Nov 8 06:46:22 2021 UTC (2 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored)

missing full stop;

Revision 1.62 / (download) - annotate - [select for diffs], Mon Mar 8 06:20:50 2021 UTC (3 years, 2 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.61: +9 -6 lines
Diff to previous 1.61 (colored)

use a journal reference instead of cstr when possible

Revision 1.61 / (download) - annotate - [select for diffs], Mon Mar 8 02:47:27 2021 UTC (3 years, 2 months ago) by jsg
Branch: MAIN
Changes since 1.60: +13 -2 lines
Diff to previous 1.60 (colored)

Add some references, most of these were removed when we stopped building
and installing USD/SMM/PSD docs.

jmc@ agrees with the direction, ok millert@ on an earlier diff

Revision 1.60 / (download) - annotate - [select for diffs], Mon Dec 21 19:58:29 2020 UTC (3 years, 4 months ago) by millert
Branch: MAIN
Changes since 1.59: +3 -3 lines
Diff to previous 1.59 (colored)

Fix typo in mktime() year format description.  From Paul de Weerd.

Revision 1.59 / (download) - annotate - [select for diffs], Wed Dec 9 20:00:11 2020 UTC (3 years, 5 months ago) by millert
Branch: MAIN
Changes since 1.58: +55 -3 lines
Diff to previous 1.58 (colored)

Update awk to December 8, 2020 version.
Prevents strings beginning with "inf" or "nan" from being interpreted
as infinity or not-a-number respectively which still parsing "inf"
and "nan" (with or without a leading sign) correctly.

Revision 1.58 / (download) - annotate - [select for diffs], Thu Nov 5 16:04:39 2020 UTC (3 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.57: +3 -3 lines
Diff to previous 1.57 (colored)

double word fixes;

Revision 1.57 / (download) - annotate - [select for diffs], Fri Aug 28 16:29:16 2020 UTC (3 years, 8 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.56: +40 -2 lines
Diff to previous 1.56 (colored)

Implement mktime() function for compatibility with mawk and gawk.
This is the only missing time function compared to those two
implementations.  Doc changes OK jmc@

Revision 1.56 / (download) - annotate - [select for diffs], Fri Jul 24 01:57:06 2020 UTC (3 years, 9 months ago) by millert
Branch: MAIN
Changes since 1.55: +4 -2 lines
Diff to previous 1.55 (colored)

Regular expression support in RS is an extension.

Revision 1.55 / (download) - annotate - [select for diffs], Sat Jun 27 14:04:58 2020 UTC (3 years, 10 months ago) by millert
Branch: MAIN
Changes since 1.54: +20 -17 lines
Diff to previous 1.54 (colored)

Improve description of field splitting and document FS special cases.
OK jmc@ kn@

Revision 1.54 / (download) - annotate - [select for diffs], Fri Jun 26 21:50:06 2020 UTC (3 years, 10 months ago) by millert
Branch: MAIN
Changes since 1.53: +12 -2 lines
Diff to previous 1.53 (colored)

Document that FS is applied at the time the input line is read.
Previously, our awk suffered from a bug where FS was applied too late.
This fix has the potential to cause problems for awk scripts written
to the old (buggy) behavior.  The current behavior is consistent
with other awk implementations such as mawk and gawk.

Revision 1.53 / (download) - annotate - [select for diffs], Wed Jun 17 15:34:11 2020 UTC (3 years, 11 months ago) by tim
Branch: MAIN
Changes since 1.52: +11 -2 lines
Diff to previous 1.52 (colored)

Document that rand() returns non-deterministic random numbers unless a
seed is explicitly set.

OK millert@

Revision 1.52 / (download) - annotate - [select for diffs], Sat Jun 13 01:21:01 2020 UTC (3 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.51: +103 -5 lines
Diff to previous 1.51 (colored)

Integrate the bsd-features branch from awk github.
Implements the gensub(), systime() and strftime() functions for
greater gawk compatibility.

Revision 1.51 / (download) - annotate - [select for diffs], Sat Jun 13 01:19:55 2020 UTC (3 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.50: +4 -2 lines
Diff to previous 1.50 (colored)

POSIX doesn't permit an unescaped '/' in an extended regular expression.
Unlike upstream awk, ours has historically allowed unescaped '/'
inside a bracket expression for compatibility with other awk
implementations but the check was too simple-minded.  This improves
the matching to allow things like /[]/]/, /[^]// and '/[abc[:digit:]/@#]/'
To enable strict POSIX compliance, set POSIXLY_CORRECT.

Revision 1.50 / (download) - annotate - [select for diffs], Wed Jun 10 21:05:02 2020 UTC (3 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.49: +15 -2 lines
Diff to previous 1.49 (colored)

Update awk to Jan 31, 2020 version.

Revision 1.49 / (download) - annotate - [select for diffs], Wed Jun 10 21:02:53 2020 UTC (3 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.48: +6 -1 lines
Diff to previous 1.48 (colored)

Update awk to Oct 6, 2019 version.

Revision 1.48 / (download) - annotate - [select for diffs], Wed Jun 10 21:01:50 2020 UTC (3 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.47: +3 -8 lines
Diff to previous 1.47 (colored)

Update awk to March 5, 2019 version.

Revision 1.47 / (download) - annotate - [select for diffs], Wed Jun 10 21:00:01 2020 UTC (3 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.46: +32 -9 lines
Diff to previous 1.46 (colored)

Update awk to Aug 23, 2018 version.

Revision 1.46 / (download) - annotate - [select for diffs], Wed Jan 22 03:47:38 2020 UTC (4 years, 3 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.45: +10 -7 lines
Diff to previous 1.45 (colored)

claudio noticed that "exit" inside the main {} clause still runs the EXIT
clause, this was poorly documented as "immediately", and "after the last line"
which is inaccurate there are other causes.  Explain this a bit better.
ok millert claudio

Revision 1.45 / (download) - annotate - [select for diffs], Sun May 26 01:16:09 2019 UTC (4 years, 11 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.44: +4 -3 lines
Diff to previous 1.44 (colored)

use proper crossreferences

Revision 1.44 / (download) - annotate - [select for diffs], Mon Sep 14 20:06:58 2015 UTC (8 years, 8 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.43: +5 -5 lines
Diff to previous 1.43 (colored)

Avoid .Ns right after .Pf, it's pointless.
In some cases, do additional cleanup in the immediate vicinity.

Revision 1.43 / (download) - annotate - [select for diffs], Fri Jan 16 15:53:24 2015 UTC (9 years, 4 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.42: +7 -15 lines
Diff to previous 1.42 (colored)

fix placement of opening parentheses, and drop some .Xo while here

Revision 1.42 / (download) - annotate - [select for diffs], Mon Dec 15 20:31:40 2014 UTC (9 years, 5 months ago) by tedu
Branch: MAIN
Changes since 1.41: +3 -2 lines
Diff to previous 1.41 (colored)

.Xr cut which may be what you're really looking for.

Revision 1.41 / (download) - annotate - [select for diffs], Mon Mar 17 21:48:51 2014 UTC (10 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.40: +6 -6 lines
Diff to previous 1.40 (colored)

as suggested by schwarze, reshuffle STANDARDS text detailing posix features
we don;t support next to the posix compat blurb, in order to make things a bit
clearer; this also makes the text more concise;

ok millert schwarze sobrado

Revision 1.40 / (download) - annotate - [select for diffs], Mon May 2 11:14:11 2011 UTC (13 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored)

no need to escape `|'; as discussed with schwartze

Revision 1.39 / (download) - annotate - [select for diffs], Tue Mar 22 15:55:43 2011 UTC (13 years, 2 months ago) by jmc
Branch: MAIN
Changes since 1.38: +5 -5 lines
Diff to previous 1.38 (colored)

some small tweaks from Michael W. Bombardieri;
ok sobrado

Revision 1.38 / (download) - annotate - [select for diffs], Mon Feb 7 00:02:50 2011 UTC (13 years, 3 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.37: +3 -5 lines
Diff to previous 1.37 (colored)

Between groff-1.15 and groff-1.20.1, the .Ns macro was changed to no
longer suppress spacing when used at the beginning of an input line,
and mandoc now follows the same behaviour as new groff.
Thus, sweep the tree and remove useless .Ns.
Most places found by jmc@; ok jmc@ kristaps@.

Revision 1.37 / (download) - annotate - [select for diffs], Fri Oct 1 07:06:16 2010 UTC (13 years, 7 months ago) by jmc
Branch: MAIN
Changes since 1.36: +8 -2 lines
Diff to previous 1.36 (colored)

more EXIT STATUS tweaks; from Daniel Dickman

Revision 1.36 / (download) - annotate - [select for diffs], Wed Aug 25 19:21:04 2010 UTC (13 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.35: +2 -4 lines
Diff to previous 1.35 (colored)

get rid of the nawk hard link
ok millert guenther

Revision 1.35 / (download) - annotate - [select for diffs], Sun Aug 8 13:26:48 2010 UTC (13 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Changes since 1.34: +51 -43 lines
Diff to previous 1.34 (colored)

convert some of the weirder displays into lists, to avoid mangling;

Revision 1.34 / (download) - annotate - [select for diffs], Sun Jan 10 10:53:33 2010 UTC (14 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.33: +2 -5 lines
Diff to previous 1.33 (colored)

remove references to docs we no longer install;

Revision 1.33 / (download) - annotate - [select for diffs], Sun Feb 8 17:15:09 2009 UTC (15 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored)

bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few
updates to follow;

Revision 1.32 / (download) - annotate - [select for diffs], Thu Sep 4 15:51:28 2008 UTC (15 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.31: +5 -2 lines
Diff to previous 1.31 (colored)

+awk does not support {n,m} pattern matching
noted by Vadim Zhukov, though slightly different (doc) fix committed;

ok millert

Revision 1.31 / (download) - annotate - [select for diffs], Fri Jul 25 05:09:55 2008 UTC (15 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored)

repair .Pq use; Alan R. S. Bueno

Revision 1.30 / (download) - annotate - [select for diffs], Wed Jun 4 17:14:07 2008 UTC (15 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.29: +21 -20 lines
Diff to previous 1.29 (colored)

tweak previous, and arrange the text to read a little better;

Revision 1.29 / (download) - annotate - [select for diffs], Wed Jun 4 14:04:42 2008 UTC (15 years, 11 months ago) by pyr
Branch: MAIN
Changes since 1.28: +17 -2 lines
Diff to previous 1.28 (colored)

Extend awk with bitwise operations. This is an extension to the awk
spec and documented as such, but comes in handy from time to time.
The prototypes make it compatible with a similar GNU awk extension.

ok millert@, enthusiasm from deraadt@

Revision 1.28 / (download) - annotate - [select for diffs], Wed Jun 27 21:10:39 2007 UTC (16 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.27: +3 -4 lines
Diff to previous 1.27 (colored)

printf(1) is the correct reference here, not printf(3);
from otto; ok millert

Revision 1.27 / (download) - annotate - [select for diffs], Thu May 31 19:20:07 2007 UTC (16 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored)

convert to new .Dd format;

Revision 1.26 / (download) - annotate - [select for diffs], Wed May 30 04:41:33 2007 UTC (16 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.25: +15 -1 lines
Diff to previous 1.25 (colored)

- use a consistent text for STANDARDS
- note which options are extensions to POSIX

Revision 1.25 / (download) - annotate - [select for diffs], Mon Jan 29 19:41:10 2007 UTC (17 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

sync the -f description w/ its synopsis;

Revision 1.24 / (download) - annotate - [select for diffs], Wed Mar 29 15:29:55 2006 UTC (18 years, 1 month ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.23: +9 -4 lines
Diff to previous 1.23 (colored)

- document return value of cmd | getline [var]
- document fflush w/o arg

from matthias kilian;
ok otto

Revision 1.23 / (download) - annotate - [select for diffs], Thu May 12 09:18:24 2005 UTC (19 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.22: +3 -2 lines
Diff to previous 1.22 (colored)

.Xr script 7

Revision 1.22 / (download) - annotate - [select for diffs], Mon Oct 4 21:40:53 2004 UTC (19 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.21: +9 -5 lines
Diff to previous 1.21 (colored)

refer to re_format.7 rather than egrep.1 for a description of EREs;

Revision 1.21 / (download) - annotate - [select for diffs], Mon Apr 19 18:29:17 2004 UTC (20 years, 1 month ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.20: +4 -1 lines
Diff to previous 1.20 (colored)

point people to usd/psd docs;

Revision 1.20 / (download) - annotate - [select for diffs], Fri Dec 19 12:48:02 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.19: +11 -5 lines
Diff to previous 1.19 (colored)

- adjust some list widths for better postscript output
- reference printf(1) for a list of C escapes

Revision 1.19 / (download) - annotate - [select for diffs], Fri Dec 19 09:27:36 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.18: +6 -1 lines
Diff to previous 1.18 (colored)

add an example showing how to print to standard error;
suggested by otto@

Revision 1.18 / (download) - annotate - [select for diffs], Thu Dec 18 20:22:51 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.17: +172 -118 lines
Diff to previous 1.17 (colored)

document various aspects of awk behaviour:

- when newlines are permissible
- effects of null RS
- $NF can be used to find value of last field
- -F [ ] can be used to set FS to a single space
- t and \t are synonyms when used with FS. use [t] for a literal `t'.
- make [prog | -f profile] optional again in SYNOPSIS

Also move the functions to the end of the page for a more logical layout.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Dec 16 11:18:37 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.16: +228 -112 lines
Diff to previous 1.16 (colored)

expand documentation of built-ins:
group them according to POSIX - arithmetic, string, I/O, general
and better document how they work.

use section headers for more logical navigation.

ok jose@

Revision 1.16 / (download) - annotate - [select for diffs], Fri Dec 12 19:50:55 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.15: +111 -89 lines
Diff to previous 1.15 (colored)

- update SYNOPSIS
- standard options list
- document -V and -d[n]
- -mr and -mf no longer supported
- some formatting issues
- descriptions of examples before examples and indent examples
- update SEE ALSO

ok millert@

Revision 1.15 / (download) - annotate - [select for diffs], Mon Nov 24 10:58:08 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.14: +3 -7 lines
Diff to previous 1.14 (colored)

typo from Michael Knudsen;
also, kill some .Pp's before displays, and add one after;

Revision 1.14 / (download) - annotate - [select for diffs], Tue Sep 2 18:50:06 2003 UTC (20 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored)

escape punctuation;
ok deraadt@

Revision 1.13 / (download) - annotate - [select for diffs], Mon Jun 30 23:59:00 2003 UTC (20 years, 10 months ago) by millert
Branch: MAIN
Changes since 1.12: +4 -5 lines
Diff to previous 1.12 (colored)

Awk first appeared in appeared in Version 7 AT&T UNIX.

Revision 1.12 / (download) - annotate - [select for diffs], Tue Jun 10 09:12:09 2003 UTC (20 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.11: +4 -4 lines
Diff to previous 1.11 (colored)

- section reorder
- COMPATIBILITY merge
- macro cleanup
- kill whitespace at EOL
- new sentence, new line

ssh pages ok markus@

Revision 1.11 / (download) - annotate - [select for diffs], Tue Feb 18 07:51:08 2003 UTC (21 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.10: +24 -1 lines
Diff to previous 1.10 (colored)

copyrights added;

bootpef(8), pppd(8): Carnegie Mellon
map-mbone(8), mrinfo(8): Xerox
pdisk(8): Apple
awk(1): Lucent
sectok(3): University of Michigan

Revision 1.10 / (download) - annotate - [select for diffs], Sun Jan 5 09:37:36 2003 UTC (21 years, 4 months ago) by pvalchev
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

add missing bracket; jmc@prioris.mini.pw.edu.pl

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jul 17 21:48:56 2002 UTC (21 years, 10 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

Fix omission in description of FS variable; from tedu

Revision 1.8 / (download) - annotate - [select for diffs], Fri Nov 10 05:10:21 2000 UTC (23 years, 6 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.7: +7 -7 lines
Diff to previous 1.7 (colored)

- Section shuffling: comply to the section ordering outlined in mdoc(7).
- Some .Nm trimming.
- .Sh AUTHOR -> .Sh AUTHORS
- Other miscellaneous fixes here and there.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Aug 30 13:37:51 2000 UTC (23 years, 8 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.6: +312 -336 lines
Diff to previous 1.6 (colored)

mdoc'd awk(1) man page; thanks d@.

Revision 1.6 / (download) - annotate - [select for diffs], Sat Jun 5 01:21:18 1999 UTC (24 years, 11 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7, OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.5: +8 -8 lines
Diff to previous 1.5 (colored)

- remove trailing white space
- remove arguments from .Os macros
- remove arguments from .Nm macros, where appropriate
- some more Dq/Sq/Ql insanity
- still lots to do in the usr.bin tree... :/

Revision 1.5 / (download) - annotate - [select for diffs], Tue Mar 3 01:56:00 1998 UTC (26 years, 2 months ago) by angelos
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5, OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.4: +9 -1 lines
Diff to previous 1.4 (colored)

Document -safe option and update usage message.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 3 00:24:01 1998 UTC (26 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.3: +1 -2 lines
Diff to previous 1.3 (colored)

Remove stray "awk" at the beginning of the mam page.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Jan 20 19:43:18 1997 UTC (27 years, 4 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.2: +8 -4 lines
Diff to previous 1.2 (colored)

Latest research awk from June 29, 1996

Revision 1.2 / (download) - annotate - [select for diffs], Sat Jul 6 05:40:03 1996 UTC (27 years, 10 months ago) by etheisen
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored)

Should get installed as nawk as well.

Revision 1.1 / (download) - annotate - [select for diffs], Thu Jul 4 20:34:38 1996 UTC (27 years, 10 months ago) by tholo
Branch: MAIN

AT&T awk, by B. W. Kernighan, with fixes from 4.4BSD and by me

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.