diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-05-30 07:49:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-05-30 07:49:48 +0000 |
commit | aad277799be74ce87b0924c77664f47ca8df35c5 (patch) | |
tree | 57dd376ccfeacec9b1869773ce1bfbc5c7caeaa5 /usr.bin/sed | |
parent | be0cf0c8205158691838d9717e77bf8198954842 (diff) |
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
Diffstat (limited to 'usr.bin/sed')
-rw-r--r-- | usr.bin/sed/sed.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index 4e6cf88ef65..3340e904955 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sed.1,v 1.3 1997/03/26 02:43:17 deraadt Exp $ +.\" $OpenBSD: sed.1,v 1.4 1997/05/30 07:49:28 deraadt Exp $ .\" Copyright (c) 1992, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -35,7 +35,7 @@ .\" .\" from: @(#)sed.1 8.2 (Berkeley) 12/30/93 .\" -.Dd "December 30, 1993" +.Dd December, 30, 1993 .Dt SED 1 .Os .Sh NAME |