OpenBSD CVS

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


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.63 / (download) - annotate - [select for diffs], Wed Dec 28 13:00:57 2022 UTC (16 months, 3 weeks ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, HEAD
Changes since 1.62: +3 -3 lines
Diff to previous 1.62 (colored)

the S in CSRC is Science not Sciences

Revision 1.62 / (download) - annotate - [select for diffs], Wed Sep 14 07:14:02 2022 UTC (20 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2
Changes since 1.61: +4 -4 lines
Diff to previous 1.61 (colored)

clarify behaviour when the second address in a range is smaller than
or equal to the first;

diff from luka krmpotic
ok kn

Revision 1.61 / (download) - annotate - [select for diffs], Wed Aug 3 08:16:50 2022 UTC (21 months, 2 weeks ago) by jsg
Branch: MAIN
Changes since 1.60: +13 -4 lines
Diff to previous 1.60 (colored)

sed(1) first appeared outside of Bell Labs in PWB/UNIX 1.0

it did not start in the PWB group

"The talk said that tools like grep and sed came from PWB,
but that's not true. They were original"

"The flow from PWB back to the main research line was a trickle at best.
We had bad NIH in 1127."

Rob Pike
https://minnie.tuhs.org/pipermail/tuhs/2020-February/020329.html

The 4.4BSD version was written by Diomidis Spinellis
credited in csrg/admin/admin/contrib

"In 1992, as a bored PhD student, I reimplemented sed(1) and contributed
it the unencumbered BSD version that was then being put together"
https://www.spinellis.gr/blog/FreeBSD.html

with and ok schwarze@

Revision 1.60 / (download) - annotate - [select for diffs], Mon Mar 8 02:47:28 2021 UTC (3 years, 2 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.59: +11 -2 lines
Diff to previous 1.59 (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.59 / (download) - annotate - [select for diffs], Fri Oct 16 09:29:04 2020 UTC (3 years, 7 months ago) by jmc
Branch: MAIN
Changes since 1.58: +3 -3 lines
Diff to previous 1.58 (colored)

double word fixes; from varik valefor

Revision 1.58 / (download) - annotate - [select for diffs], Mon Dec 10 17:12:24 2018 UTC (5 years, 5 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.57: +24 -10 lines
Diff to previous 1.57 (colored)

correct inaccurate and misplaced information in CAVEATS
and move it in part to the DESCRIPTION, in part to STANDARDS;
triggered by a loosely related bug report from Lars dot Nooden at gmail dot com;
OK jmc@, and no opposition when shown on bugs@

Revision 1.57 / (download) - annotate - [select for diffs], Wed Nov 14 10:59:33 2018 UTC (5 years, 6 months ago) by martijn
Branch: MAIN
Changes since 1.56: +6 -3 lines
Diff to previous 1.56 (colored)

Make sed's -i flag more compatible with what gsed does.
- Reset the hold-space in between files
- quit the editor as soon as a 'q' command is found
- Make sure the temp-file is written back to the original file if we quit
  the editor

temp-file not written back issue found by Time Chase.
Lots of feedback from millert@ and schwarze@
OK millert@

Revision 1.56 / (download) - annotate - [select for diffs], Wed Jul 11 06:47:38 2018 UTC (5 years, 10 months ago) by martijn
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.55: +13 -9 lines
Diff to previous 1.55 (colored)

Rephrase the wording on the replacement string of the substitute command.
Cover more cases with less wording.

Joint work with schwarze@

OK millert@

Revision 1.55 / (download) - annotate - [select for diffs], Tue Jul 10 09:10:03 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.54: +16 -19 lines
Diff to previous 1.54 (colored)

Disentangle the "SED ADDRESSES", "SED REGULAR EXPRESSIONS",
and "s/// command" sections and clarify what an escaped delimiter
does inside regular expressions and inside character classes.
Joint work with martijn@, no objection from jmc@.

Revision 1.54 / (download) - annotate - [select for diffs], Tue Dec 19 17:46:28 2017 UTC (6 years, 5 months ago) by martijn
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.53: +2 -30 lines
Diff to previous 1.53 (colored)

Remove EXAMPLES section.
The example itself was taken directly from the POSIX specification by jmc@,
who doesn't remember adding it. This example isn't very clear about what
it actually does, so just remove it.

If someone can come up with one or more examples that give a more clear
introduction to the workings of sed feel free to send them in.

Prompted by a diff by kshe59 <at> zoho <dot> eu
OK jmc@

Revision 1.53 / (download) - annotate - [select for diffs], Mon Dec 11 13:25:57 2017 UTC (6 years, 5 months ago) by martijn
Branch: MAIN
Changes since 1.52: +20 -5 lines
Diff to previous 1.52 (colored)

Fix and change y command in the following ways:
- When 'n' is used as a delimiter escaping 'n' will remain a newline
  instead of becoming a 'n' character. This is how POSIX specifies how this
  should work. Other implementations tested also do this wrong.
- '[' and maybe other characters are not special during the parsing of the
  y command and don't need to be matched or treated special in any way.
- POSIX specifies that a backslash followed by anything other than the
  delimiter, 'n', and another backslash, as well as repeating characters in
  string1 are unspecified. Since the various implementations handle these
  situations in opposing ways choose to error out on them to prevent people
  falling into the pitfall of expecting identical behaviour on various
  implementations.

Inspired by the sed.1 patch by kshe59 <at> zoho <dot> eu
Feedback and OK millert@
Manpage bits OK jmc@

Revision 1.52 / (download) - annotate - [select for diffs], Fri Dec 8 18:41:59 2017 UTC (6 years, 5 months ago) by martijn
Branch: MAIN
Changes since 1.51: +3 -3 lines
Diff to previous 1.51 (colored)

Make the r command filename obligatory, similar to what FreeBSD and NetBSD
do for several years.
While here make corresponding error message for missing read and write file
consistent between commands/flag, and shrink the the code of the w flag of
the s command by making it use the same code as the w command.

Prompted by a larger diff by kshe59 <at> zoho <dot> eu
OK millert@

Revision 1.51 / (download) - annotate - [select for diffs], Thu Dec 7 09:52:26 2017 UTC (6 years, 5 months ago) by martijn
Branch: MAIN
Changes since 1.50: +9 -9 lines
Diff to previous 1.50 (colored)

Make the command formatting more consistent.
s/with/width type-O fix while here.

From kshe59 <at> zoho <dot> eu
OK jmc@

Revision 1.50 / (download) - annotate - [select for diffs], Wed Jul 19 21:28:19 2017 UTC (6 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.49: +2 -5 lines
Diff to previous 1.49 (colored)

remove some spacing; ok schwarze

Revision 1.49 / (download) - annotate - [select for diffs], Wed Oct 26 00:46:01 2016 UTC (7 years, 6 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.48: +9 -5 lines
Diff to previous 1.48 (colored)

make it clear that the s/// numeric flag can contain
more than one digit but cannot start with zero;
feedback and OK jmc@, OK jca@, OK millert@ on an earlier version

Revision 1.48 / (download) - annotate - [select for diffs], Thu Mar 17 05:27:10 2016 UTC (8 years, 2 months ago) by bentley
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.47: +13 -2 lines
Diff to previous 1.47 (colored)

Switch (non-curses, non-ksh) programs that use COLUMNS to a single idiom.

Previously behaviors were all over the map. This changes them to
use COLUMNS first, and either terminal width or a hardcoded value
(typically 80) as appropriate.

ok deraadt@; man bits ok jmc@

Revision 1.47 / (download) - annotate - [select for diffs], Wed Nov 4 21:28:27 2015 UTC (8 years, 6 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored)

replace setbuf with setvbuf, from Frederic Nowak

Revision 1.46 / (download) - annotate - [select for diffs], Sat Jul 18 09:33:00 2015 UTC (8 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.45: +8 -13 lines
Diff to previous 1.45 (colored)

various fixes; ok jasper

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jul 17 20:38:57 2015 UTC (8 years, 10 months ago) by jasper
Branch: MAIN
Changes since 1.44: +20 -3 lines
Diff to previous 1.44 (colored)

add -i flag to sed to do in-place editing; mostly based on freebsd

feedback/ok deraadt@ millert@

Revision 1.44 / (download) - annotate - [select for diffs], Wed Oct 22 23:23:22 2014 UTC (9 years, 6 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.43: +4 -9 lines
Diff to previous 1.43 (colored)

make the description of the syntax of function lists agree
with our actual implementation, which also agrees with POSIX;
triggered by guenther@'s answer to a question from chrisz@;
ok chrisz@ guenther@

Revision 1.43 / (download) - annotate - [select for diffs], Tue May 27 17:45:02 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.42: +30 -2 lines
Diff to previous 1.42 (colored)

paste in an EXAMPLES section, from posix spec;

Revision 1.42 / (download) - annotate - [select for diffs], Tue May 27 07:00:44 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.41: +1 -3 lines
Diff to previous 1.41 (colored)

there is no need to xref regex(3) and setbuf(3) in SEE ALSO - re_format(7)
is enough;

Revision 1.41 / (download) - annotate - [select for diffs], Mon May 26 17:08:58 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.40: +8 -8 lines
Diff to previous 1.40 (colored)

tweak the text for -a and function lists;

Revision 1.40 / (download) - annotate - [select for diffs], Mon May 26 15:33:17 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.39: +27 -19 lines
Diff to previous 1.39 (colored)

rework the SED FUNCTIONS text;

Revision 1.39 / (download) - annotate - [select for diffs], Mon May 26 15:04:12 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored)

the `P' function was crying out for a comma;

Revision 1.38 / (download) - annotate - [select for diffs], Mon May 26 14:52:13 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.37: +7 -6 lines
Diff to previous 1.37 (colored)

posix does not count `!' as a separate function, and neither should we;
instead, move the description of this mechanism into the general SED
FUNCTIONS section;

Revision 1.37 / (download) - annotate - [select for diffs], Mon May 26 14:42:32 2014 UTC (9 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.36: +86 -102 lines
Diff to previous 1.36 (colored)

remove the ugly hack that saw two It macros used to render one item; replace
with other ugly hack (.br): at least this way we can whack a ton of Pp, and
it feels not quite as wrong;

while here, fix Em abuse by using Ic for functions and Ar for argument names;
i also fixed up the text of "s" a little to make it read better;

Revision 1.36 / (download) - annotate - [select for diffs], Fri Sep 3 11:09:29 2010 UTC (13 years, 8 months 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, OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.35: +3 -3 lines
Diff to previous 1.35 (colored)

add an EXIT STATUS section for /usr/bin;

Revision 1.35 / (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_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.34: +1 -4 lines
Diff to previous 1.34 (colored)

remove references to docs we no longer install;

Revision 1.34 / (download) - annotate - [select for diffs], Fri Aug 7 06:37:50 2009 UTC (14 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.33: +15 -12 lines
Diff to previous 1.33 (colored)

tweak previous;

Revision 1.33 / (download) - annotate - [select for diffs], Fri Aug 7 03:30:56 2009 UTC (14 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.32: +14 -5 lines
Diff to previous 1.32 (colored)

add -E flag to compile regular expressions using the extended POSIX
syntax. The -E flag is compatible with the other BSDs and OSX. -r is
also provided as an alias for compatibility with GNU sed.

feedback from jmc@ and millert@
ok millert@ pyr@ henning@ marco@

Revision 1.32 / (download) - annotate - [select for diffs], Sun Feb 8 17:15:10 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.31: +3 -3 lines
Diff to previous 1.31 (colored)

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

Revision 1.31 / (download) - annotate - [select for diffs], Tue Oct 7 21:51:37 2008 UTC (15 years, 7 months ago) by millert
Branch: MAIN
Changes since 1.30: +4 -4 lines
Diff to previous 1.30 (colored)

The 'l' command should not encode newlines.  Also document that
backspace is escaped as \b.  OK phessler@ and jmc@

Revision 1.30 / (download) - annotate - [select for diffs], Mon Sep 1 06:13:14 2008 UTC (15 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.29: +5 -3 lines
Diff to previous 1.29 (colored)

note that the opening delimiter of a context address should be preceded
by a backslash, if the delimiter is not a slash;

adapted from freebsd -r1.47 from yar;

Revision 1.29 / (download) - annotate - [select for diffs], Tue Oct 16 20:19:27 2007 UTC (16 years, 7 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.28: +4 -4 lines
Diff to previous 1.28 (colored)

sync the synopsis and usage of commands

ok jmc@

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

convert to new .Dd format;

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

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

Revision 1.26 / (download) - annotate - [select for diffs], Tue Mar 20 06:07:57 2007 UTC (17 years, 2 months ago) by ray
Branch: MAIN
Changes since 1.25: +15 -6 lines
Diff to previous 1.25 (colored)

Add line-buffering flag (-u).

OK deraadt@ and jmc@.

Revision 1.25 / (download) - annotate - [select for diffs], Thu Oct 26 20:19:12 2006 UTC (17 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.24: +24 -4 lines
Diff to previous 1.24 (colored)

- document that multiple commands may be newline or semicolon separated
- refer to latest posix revision
- note that -a and newline-separated multiple commands are non-portable
- note which commands do not permit being specified separated by semicolons

based around pr 5269, from tilo stritzky
much help/ok otto

Revision 1.24 / (download) - annotate - [select for diffs], Tue Oct 24 11:46:53 2006 UTC (17 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.23: +2 -4 lines
Diff to previous 1.23 (colored)

+.Ex -std sed

Revision 1.23 / (download) - annotate - [select for diffs], Mon Oct 4 21:37:49 2004 UTC (19 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.22: +6 -4 lines
Diff to previous 1.22 (colored)

remove some incorrect apostrophes, and make the text referring to
re_format.7 slightly more consistent w/ other pages;

Revision 1.22 / (download) - annotate - [select for diffs], Sat Jan 31 13:04:41 2004 UTC (20 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.21: +3 -2 lines
Diff to previous 1.21 (colored)

make USD reference a little clearer;

Revision 1.21 / (download) - annotate - [select for diffs], Thu Jan 29 21:19:04 2004 UTC (20 years, 3 months ago) by jmc
Branch: MAIN
Changes since 1.20: +51 -49 lines
Diff to previous 1.20 (colored)

- replace old-style macros
- mmultiple args do not need to be quoted
- uppercase .Sh args
- reference 15.sed usd
- some other tidy up

Revision 1.20 / (download) - annotate - [select for diffs], Fri Jan 23 23:08:47 2004 UTC (20 years, 3 months ago) by jmc
Branch: MAIN
Changes since 1.19: +9 -9 lines
Diff to previous 1.19 (colored)

`Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8))
discussed with todd@

Revision 1.19 / (download) - annotate - [select for diffs], Fri Jan 2 09:50:28 2004 UTC (20 years, 4 months ago) by jmc
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

point people to re_format(7) for a description of basic regular
expressions, rather than regex(3);

from Greg A. Woods;

Revision 1.18 / (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.17: +3 -3 lines
Diff to previous 1.17 (colored)

escape punctuation;
ok deraadt@

Revision 1.17 / (download) - annotate - [select for diffs], Tue Jun 3 02:56:16 2003 UTC (20 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.16: +2 -6 lines
Diff to previous 1.16 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Nov 9 17:52:37 2000 UTC (23 years, 6 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

Change all option list specifications to ".Bl -tag -width Ds". Most man
pages just needed their -width parameter tweaked to "Ds", which provides
a nice width of 6 constant characters. For consistency more than anything.

Revision 1.15 / (download) - annotate - [select for diffs], Fri Oct 6 23:53:52 2000 UTC (23 years, 7 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.14: +40 -36 lines
Diff to previous 1.14 (colored)

Print commands in a prettier fashion.

Revision 1.14 / (download) - annotate - [select for diffs], Sat Apr 15 02:15:13 2000 UTC (24 years, 1 month ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored)

Mostly punctuation fixes.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Mar 11 21:40:08 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

Various cleanups and standardizations.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Mar 10 20:17:52 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored)

Various cleanups and standardization.

Revision 1.11 / (download) - annotate - [select for diffs], Mon Mar 6 03:17:39 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.10: +6 -6 lines
Diff to previous 1.10 (colored)

Some section re-ordering.

Revision 1.10 / (download) - annotate - [select for diffs], Sun Mar 5 00:28:55 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

Finish standardizing options list introduction.

Revision 1.9 / (download) - annotate - [select for diffs], Sat Mar 4 22:19:26 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.8: +6 -6 lines
Diff to previous 1.8 (colored)

In Unix land we prefer "whitespace" to "white space" or "white-space". At
least, this is the impression I get from looking at a lot of Perl docs.

Revision 1.8 / (download) - annotate - [select for diffs], Sun Jul 4 12:00:04 1999 UTC (24 years, 10 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.7: +50 -57 lines
Diff to previous 1.7 (colored)

better use of quotes

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jul 2 20:11:45 1999 UTC (24 years, 10 months ago) by aaron
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

consistent .Dd usage; proper format is: .Dd Month DD, YYYY

Revision 1.6 / (download) - annotate - [select for diffs], Mon Dec 28 11:35:17 1998 UTC (25 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

use \& block on : in macro; ross

Revision 1.5 / (download) - annotate - [select for diffs], Sun Sep 27 16:57:52 1998 UTC (25 years, 7 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

usr.bin/ man page cleanups, n-s

Revision 1.4 / (download) - annotate - [select for diffs], Fri May 30 07:49:28 1997 UTC (26 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3, OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

for i in `find . -name \*.[123456789] -exec grep '^.Dd ' {} /dev/null \; | \
	grep '"' | cut -d':' -f1`; do
sed -e '/^.Dd /s/"//g' -e '/^.Dd /s/\(^.Dd [A-Za-z]*\) \(.*\)$/\1, \2/' <$i >x
cat x > $i
done

Revision 1.3 / (download) - annotate - [select for diffs], Wed Mar 26 02:43:17 1997 UTC (27 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

show a backslash properly; david@mono.org

Revision 1.2 / (download) - annotate - [select for diffs], Wed Jun 26 05:39:08 1996 UTC (27 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.1: +1 -1 lines
Diff to previous 1.1 (colored)

rcsid

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:46:05 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:46:05 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

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.