Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/bin/sh fix typo.
details: https://anonhg.NetBSD.org/src/rev/5ce70338d909
branches: trunk
changeset: 499457:5ce70338d909
user: christos <christos%NetBSD.org@localhost>
date: Mon Nov 20 17:48:05 2000 +0000
description:
fix typo.
diffstat:
bin/sh/sh.1 | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (23 lines):
diff -r bce9d87c6e8a -r 5ce70338d909 bin/sh/sh.1
--- a/bin/sh/sh.1 Mon Nov 20 17:45:10 2000 +0000
+++ b/bin/sh/sh.1 Mon Nov 20 17:48:05 2000 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: sh.1,v 1.39 2000/11/20 16:59:56 christos Exp $
+.\" $NetBSD: sh.1,v 1.40 2000/11/20 17:48:05 christos Exp $
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
@@ -1248,10 +1248,10 @@
which requires an argument.
.Pp
.Bd -literal -offset indent
-while getopts abo: c
+while getopts abc: f
do
- case $c in
- a | b) flag=$c;;
+ case $f in
+ a | b) flag=$f;;
c) carg=$OPTARG;;
\\?) echo $USAGE; exit 1;;
esac
Home |
Main Index |
Thread Index |
Old Index