Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/historical/nawk/bin awk(1): g/c extraneous space in...
details: https://anonhg.NetBSD.org/src/rev/ced565b8073e
branches: trunk
changeset: 368310:ced565b8073e
user: uwe <uwe%NetBSD.org@localhost>
date: Tue Jul 05 12:46:48 2022 +0000
description:
awk(1): g/c extraneous space in an example
diffstat:
external/historical/nawk/bin/awk.1 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r e568e7383df4 -r ced565b8073e external/historical/nawk/bin/awk.1
--- a/external/historical/nawk/bin/awk.1 Tue Jul 05 00:47:32 2022 +0000
+++ b/external/historical/nawk/bin/awk.1 Tue Jul 05 12:46:48 2022 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: awk.1,v 1.11 2022/07/05 00:47:32 uwe Exp $
+.\" $NetBSD: awk.1,v 1.12 2022/07/05 12:46:48 uwe Exp $
.\"
.\" Copyright (C) Lucent Technologies 1997
.\" All Rights Reserved
@@ -702,7 +702,7 @@
Add up first column, print sum and average:
.Bd -literal -offset indent
{ s += $1 }
-END { print "sum is", s, " average is", s/NR }
+END { print "sum is", s, "average is", s/NR }
.Ed
.Pp
Print all lines between start/stop pairs:
Home |
Main Index |
Thread Index |
Old Index